Web サービス HTTPS を使用しようとしています (証明書認証を使用)。プロジェクトの Web 参照に Web サービスを追加し、"myCertificate.cer" を Console Root\Certificates\Personal にインポートしました。
エラー 401: 要求が HTTP ステータス 401: Unauthorized で失敗しました。
何か案が?
....
using System.Security.Cryptography.X509Certificates;
...
string certPath = @"C:\myCertificate.cer";
// Load the certificate into an X509Certificate object.
X509Certificate cert = X509Certificate.CreateFromCertFile(certPath);
// Create an instance of the Web service proxy.
zgetuser_certificate mathservice = new zgetuser_certificate();
// Create an X509Certificate object
mathservice.ClientCertificates.Add(X509Certificate.CreateFromCertFile(certPath));
try
{
ZgetUser user = new ZgetUser();
user.Username = "USER01";
ZgetUserResponse response = new ZgetUserResponse();
response = mathservice.ZgetUser(user); //ERROR: The request failed with HTTP status 401: Unauthorized.
Console.WriteLine("{0}, {1}, {2}, {3}", response.Company, response.Firstname, response.Fullname, response.Lastname);
}
catch (Exception ex)
{
if (ex is WebException)
{
WebException we = ex as WebException;
WebResponse webResponse = we.Response;
throw new Exception("Exception calling method. " + ex.Message);
}
}
私の英語でごめんなさい。ありがとう!!!