why we use Integrated Security=SSPI in ado.net connection string...?
how it work?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pankaj PandeyPosted May 17, 2013, 1:06 AM
it is a secure connection method used for connection string given by microsoft.
Through it a remote server access of sql server we can limited.
which helps you to prevent from thread and etc.
thanks
Jignesh TrivediPosted May 16, 2013, 9:48 AM
hi,
SSPI is nothing but well-defined common API for obtaining integrated security services for authentication.
this means that the application authenticate itself at database using UID and password of logged on user whose is execute the application.
or if it is a web application and hosted on IIS then it use ASPNET or NETWORK SERVICE account.
The SSPI allows an application to use any of the available security packages on a system without changing the interface to use security services. The SSPI does not establish logon credentials because that is generally a privileged operation handled by the operating system.
Please refer
http://technet.microsoft.com/en-us/library/bb742535.aspx
hope this will help you.