Database update works as console app, fails as service
I wrote a console app that has a filewatcher, which takes an .xml document, extracts the data and updates my sql server 2005 DB. It works perfectly as a console app. I tried making it into a service, and it fails upon attempting a connection to SQL server giving me the following error:
Login failed for user...
I am using the same connection string for both programs. Is there anything special I have to do to let an NT Service connect to SQL Server? There is a lot of code, so if you need to see it, let me know what you would like to view.. thanks.

