ASP.NET [SqlException (0x80131904): Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.] Error

0

I am newby in asp.net. I want to develop basic website on server which contains 2 gridview(Getting data from SQL) for listing information. When i debug my project on server it is working(mysite/default.aspx) but without on server my site is not working and get error as follows; What is the problem?

Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
Description: An unhandled exception occurred during the execution of the current web request. Please 
review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information 
regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:


[SqlException (0x80131904): Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.]
System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 
waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, 
DbConnectionOptions userOptions, DbConnectionInternal& connection) +345
System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, 
TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection) 
+156
System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, 
TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, 
DbConnectionInternal& connection) +258
System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection 
outerConnection, 
DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions 
userOptions) +312
System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry) +202
System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) +413
System.Data.SqlClient.SqlConnection.Open() +128
System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 
startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +172
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String 
srcTable, IDbCommand command, CommandBehavior behavior) +178
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable) +119
System.Web.UI.WebControls.SqlDataSourceView.ExecuteSelect(DataSourceSelectArguments arguments) +2868
System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, 
 DataSourceViewSelectCallback 
callback) +26
DevExpress.Web.Internal.DataContainer.PerformSelect() +151
DevExpress.Web.ASPxDataWebControlBase.DataBindInternal() +166
DevExpress.Web.ASPxWebControl.DataBind() +50
DevExpress.Web.Internal.DataHelperBase.EnsureDataBound(Boolean ensureChildControls) +74
 DevExpress.Web.Internal.DataContainer.EnsureDataBound() +154
 DevExpress.Web.ASPxDataWebControlBase.OnPreRender(EventArgs e) +26
  System.Web.UI.Control.PreRenderRecursiveInternal() +162
 System.Web.UI.Control.PreRenderRecursiveInternal() +256
 System.Web.UI.Control.PreRenderRecursiveInternal() +256
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean 
includeStagesAfterAsyncPoint) +6875

 Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.7.3282.0

And my IIS configuration for authentification is: *Anonymous Authentication:Enabled *ASP.NET Authentication:Enabled *Basic Authentication:Disabled *Forms Authentication:Disabled *Windows Authentication:Enabled

sql
asp.net
authentication
asked on Stack Overflow Oct 10, 2019 by (unknown user)

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0