There's no change, other than it's a fresh bit of hardware and software?
I've had this same brush for 15 years.. It's had 3 new heads and 5 new handles..
No, but seriously. Do you really expect that a machine running SQL Server will use the credentials of the logged-on user to allow any arriving connection to authenticate? What's the point in that?
Quote:
|
Originally Posted by http://msdn.microsoft.com/en-us/library/bsz5788z.aspx
How to: Access SQL Server Using Windows Integrated Security
If your application runs on a Windows-based intranet, you might be able to use Windows integrated authentication for database access. Integrated security uses the current Windows identity established on the operating system thread to access the SQL Server database. You can then map the Windows identity to a SQL Server database and permissions.
To connect to SQL Server using Windows integrated authentication, you must identify the Windows identity under which your ASP.NET application is running. You must also be sure that the identity has been granted access to the SQL Server database. This topic includes a code example that displays the current Windows identity of the ASP.NET application.
Connecting to SQL Server
If SQL Server is on a different computer than the Web server, the Windows identity must be able to flow across the network to the remote instance of SQL Server. (Windows networks that have been configured appropriately with Kerberos authentication are able to do this.) However, depending on the settings in the identity configuration element, the Windows identity established on the operating system thread for ASP.NET applications may not be able to flow properly to the remote SQL Server.
|
I suggest you switch off Integrated Security if youre not on a domain, and use traditional username/password. I cannot guarantee that setting up an account on both machines, that has the same username and password will a) work, b) be sensible, and short of setting up a domain or kerberos challenge I really don't see how you can get your credentials to be recognised universally