Skip to main content
Hi All
I am getting the following error

System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: Login failed for user '<MYSERVER>ASPNET'. at System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction) at System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction) at System.Data.SqlClient.SqlConnection.Open() at WorkSpaceService.FilterService.NewUserTemplate(String UserName) --- End of inner exception stack trace ---

I have tried steps mentioned in the various posts but nothing worked

Thanks
Tushar
Tushar,

it looks like you have configured the workspace to use Integrated Authentication to the SQL server.

As a start, you can configure the workspace to use SQL Auth to see if that solves your problem.

go to the web.config file in program filesk2.net 2003k2wsworkspaceservice and change the appsettings section to:
<appSettings>
<add key="DSN" value="Data Source=yourSQLServerName; initial catalog=K2Log; User ID=sqluser;Password=sqluserpassword" />
</appSettings>

Reply