My question/problem is my client has machines at remote locations that they want to run the application on and connect to the database, what do I need to do?
Thanks
Simmy
Hi,
then you either have to impersonate the user in the remote domain context in your application first or use SQL Server authentication to connect to the server.
HTH, Jens Suessmeyer.
http://www.sqlserver2005.de
Hi Simmy,
If your intention is to use integrated authentication, then you need to either (1) create a trust relationship between your client machine's domain of the server machine's domain (assuming that your client machine is part of a domain) or (2) you can create the same local user account with identical passwords on both machines. I don't really recommend (2) since it means that you'll be relying upon NTLM authentication whereas with (1), Kerberos authentication is available (see http://blogs.msdn.com/sql_protocols/archive/2005/10/12/479871.aspx for more information).
Thanks,
Il-Sung.
No comments:
Post a Comment