I'm trying to setup a test environment on my own machine, of our company website written in classic asp. The idea is to use integrated windows authentication to connect to the database.
I'm useing the following connection string
Provider=SQLOLEDB.1;Server=localhost;Database=Filbert;Integrated Security=SSPI;
But the browser responds with
Microsoft OLE DB Provider for SQL Server (0x80004005)
[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.
In the SQL log I can see
Login failed for user 'NT AUTHORITY\SYSTEM'. [CLIENT: <local machine>]
Error: 18456, Severity: 14, State: 16.
A state 16 errors is whe
I'm running Windows XP SP3, IIS 5.1, SQL server 2005
EDIT: I've also created and tested an login using SQL authentication instead. I'm able to login with the SQL authentication using the SQL management studio just fine, but get the same errors when trying from ASP