Ask a Question related to ASP.NET Security, Design and Development.
-
mt #1
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
I'm getting a Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' error. I'm running IIS 6 on 2003 Server
The error occurs when my asp.net page trys to execute a DTS package stored on another server (same domain). I'm using a sql login - not windows authentication - to connect sql server. Why is the app trying to connect with the Anonymous Logon????
Everything works great when I'm at the IIS machine logged on as an administrator
Anonymous authentication is disabled. Windows authentication is enabled
The app can read from the same db that stores the DTS package without any problem. So...I know there is nothing wrong with the sql login.
mt Guest
-
Login failed for user 'NT AUTHORITY\NETWORK SERVICE'
Hey Nick.... Will you please specify, exactly how you do what you describ? Creating what role where and how! I would be very pleased if you... -
Pls Help : WINNT user/Anonymous login error in Webservices ?
Hi, am using Sqlserver as a database which connects thru WINNT Authentication. I wrote a simple webservice which has 2 public functions ,one... -
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' msg
Hey Guys, I have inherited an evil app that I am trying to fix. It is a VB6 desktop app, that I am trying to port to the web using VB6/com+/ASP... -
login failed for user \aspnet
I am new to MSDE 2000. Installed this yesterday using windows installer, deafult settings(no change in authentication). a. I want to create... -
Login failed for user...
I'm trying to set up a subscription from a transactional publication. The publication works find but when I try to push or pull a subscription to... -
mklapp #2
RE: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
I am working through this very thing (a little different)
You probably have to build a credential cache
Dim credCache As New System.Net.CredentialCach
Dim uid As Strin
Dim pwd As Strin
dim ws as new my.webservic
uid = "realUser
pwd = "realPassword
credCache.Add(New Uri(ws.Url), "Basic", New System.Net.NetworkCredential(uid, pwd)
ws.Credentials = credCach
ws.method(
This will likely work. Obviously you won't want to keep real Passwords and user ids in your program.
mklapp Guest
-
Paul p #3
RE: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
What is probably happening is that your Windows Account is coming into SQL Server and since SQL Server is using SQL Login to authenticate it doesn't recognize you Windows Account. I would look at creating a new SQL Server Login and add your Windows Domain Account to that Login. That should work.....
Paul p Guest



Reply With Quote

