Can you show us exact error...does it have words Named Pipes in it?
The problem is that SQL server allows 2 way connections
1. Named Pipes
2. TCP/IP
Try to add following to your connection string
Network Library=DBMSSOCN;
I am not sure but with Integrated Security=SSPI provider might try to force
the Named Pipes connection. And you need totally different ports open on
firewall for that.
George.
> But since it works with SQL Authentication (sa user) and ODBC works
> (SQLServer\Test_User), then it should not be a firewall, isn't ?
>
> Does custom service account require a different port than 1433 ?
chris - 02 May 2008 14:58 GMT
Thanks George for your messages. It seems that I had to increase the
connection timeout in connection string to a big number 400. Till now I kept
the default one, 15 and error was appearing.
It seems that custom service account needs more time for connecting....