Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NT AUTHORITY\ANONYMOUS LOGON

Status
Not open for further replies.

EZEason

Programmer
Dec 11, 2000
213
US
ASP.net 2.0, IIS6 (web server), SQL Express(on data server) both running Win 2003. I'm developing a new company intranet. I have set up the following in the web.config file:
Code:
    <authentication mode="Windows" />
    <identity impersonate="true" />

connection:
Code:
<connectionStrings>
  <add name="DMnetConnectionString2" connectionString="Data Source=DMAPPS\SQLEXPRESS;Initial Catalog=DMnet;Integrated Security=SSPI; Connect Timeout = 90"
   providerName="System.Data.SqlClient" />
 </connectionStrings>

In the IIS setting I have disabled "Anonymous Access" and "Windows Integrated Authentication" is enabled.

I still get the following error:
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
If I run the app from my computer, it runs fine. I can see the user name in a text box I added to the default page.
What am I missing???

What doesn't kill you makes you stronger.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top