i am getting this error: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection
- my asp.net application is running on win 2000 professional
- my SQL server 2000 is running on windows 2003
- the usr i use to login into the web server, has rights to the database
- my web config file has
<authentication mode="Windows"/>
<identity impersonate="true"/>
- the iis is configured to use windows authentication
- the connection string is in the web.config file like this:
<add key="telem" value="data source = 192.168.240.100; initial catalog = telem; Integrated Security=SSPI; Connect Timeout = 90 " />
- if i run the web application from .net it works fine, after that i run the application directly from a web browser, and works. if i wait a period of 10 minutes aproximately, and try to acces the application, i get the cant connect error.
what can the problem be ?
- my asp.net application is running on win 2000 professional
- my SQL server 2000 is running on windows 2003
- the usr i use to login into the web server, has rights to the database
- my web config file has
<authentication mode="Windows"/>
<identity impersonate="true"/>
- the iis is configured to use windows authentication
- the connection string is in the web.config file like this:
<add key="telem" value="data source = 192.168.240.100; initial catalog = telem; Integrated Security=SSPI; Connect Timeout = 90 " />
- if i run the web application from .net it works fine, after that i run the application directly from a web browser, and works. if i wait a period of 10 minutes aproximately, and try to acces the application, i get the cant connect error.
what can the problem be ?