如何調用基於Basic authentication/Digest authentication/windows authencation驗證模式並且需提供用戶端certificate的web ser

來源:互聯網
上載者:User

前言:

當用戶端掉用承載在IIS中基於basic authentication/digest authentication等等非anonymous驗證模式時,用戶端必須提供相應的credential.

主要注意點:

1. 如何generate 代理類

在利用wsdl command時,必須提供串連到web service上的使用者名稱和密碼才能generate proxy,其文法如下:

wsdl  http://webservice-uri/webservice.asmx /username:yourusername /password:yourpassword

2.如何在client application遞交client credential和certificate.

為了提交client 的credential, 我們必須建立一個用戶端的credential,然後隨proxy instance一起遞交到server端以便驗證,如下所時:

Service1 proxy = new Service1();

System.Net.NetworkCredential credential = new System.Net.NetworkCredential("yourusername", "yourpassword", "yourdomain");

 proxy.Credentials = credential;

然後我們需要指定用戶端的certificate(public-key 部分),如下: 

 System.Security.Cryptography.X509Certificates.X509Certificate cert = new System.Security.Cryptography.X509Certificates.X509Certificate("yourcertificate-publickey.cer");

proxy.ClientCertificates.Add(cert);

這樣的話,用戶端就提供了credential和certificate並一起提交之server了 :)當然以上所作的一切,前提條件是web service 所在的server是配置成了基於basic/digest authencation+certificate模式。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.