Reputation: 299
I created a service that has a database connection which is working fine in Cassini, when in copy the service to the inetpub all works fine except database calls, they always return this error:
The server encountered an error processing the request. See server logs for more details."
Now i have 2 questions,
I can find server logs in my C:\inetpub\logs\LogFiles\W3SVC1 folder. But are these the ones mentioned because these do not seem to contain any usefull data.
How is it possible that everything works in Cassini but not in IIS?
If there are any questions about my question please go ahead!
Edit I am using Visual studio team system 2008 and IIS 7.0
Upvotes: 0
Views: 1339
Reputation: 8152
My guess is permissions. Are you using Windows authentication?
In the case of Windows authentication: http://www.codeguru.com/csharp/.net/net_security/authentication/article.php/c7725
Upvotes: 0
Reputation: 65461
This is normally a permissions problem.
If you are using defaults:
To fix it you could:
Upvotes: 1