Authenticating SQL connection using certificates in .NET

前端 未结 2 2036
时光取名叫无心
时光取名叫无心 2021-01-12 01:51

I\'ve noticed that it is possible SQL Server 2005/2008 to authenticate replication accounts using certificates. Is it possible to authenticate .NET SqlConnection in the same

2条回答
  •  無奈伤痛
    2021-01-12 01:59

    You can configure ASP.NET to use client side certificates, see this KB article.

    But the ASP.NET server does not have access to your client's certificate. So the ASP.NET server cannot authenticate to SQL Server with a certificate.

提交回复
热议问题