URGENT: Strange Prob With Web.config <<identity> section.

S

Sonal

I am trying to impersonate user with windows account.

If I write following lines in web.config it show error
<identity impersonate="true" userName="contoso\Jane" password="pass"/>

ERROR:
Error while trying to run project: Unable to start debugging on the web
server. Server side-error occurred on sending debug HTTP request.

Make sure the server is operating correctly. Verify there are no syntax
errors in web.config by doing a Debug.Start Without Debugging. You may also
want to refer to the ASP.NET and ATL Server debugging topic in the online
documentation.


On the other hand if i just write like this then error goes aways and
application starts running...

<identity impersonate="true" userName="" password=""/>


I am wondering what is wrong. can any one guide.
 
G

gg

You need to give contoso\Jane full read and WRITE permissions in the .net
framework directory on the web server (C:\WINDOWS\Microsoft.NET\Framework)
and also perhaps in the webs root directory.
 
S

Sonal

HI Again,

I located the exact error... How can I resolve This.

Server Error in '/MTest' Application.
----------------------------------------------------------------------------
----

Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Error reading the password from the registry.

Source Error:

Line 86: <identity impersonate="true"
userName="registry:HKLM\Software\MyASP.NET\Identity\ASPNET_SETREG,userName"
password="registry:HKLM\Software\MyASP.NET\Identity\ASPNET_SETREG,passwd"/>
Line 87:
Line 88: </system.web>

Source File: c:\inetpub\wwwroot\MTest\web.config Line: 86
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top