C # Call WebService Use SSL connection

Source: Internet
Author: User
Tags ssl connection

public void ssllearning ()

{

Servicepointmanager.servercertificatevalidationcallback

= New Remotecertificatevalidationcallback ((A, B, C, D) => {return true;});

Sslwebservice SWS = new Sslwebservice ();

Cws. Clientcertificates.add (

X509certificate.createfromcertfile (Path.GetFullPath (@). /.. /") + @" Resourcescerfile.cer "));

SwS. DoSomething ("Hello world!");

}

The above is a sample code that invokes SSL based WebService, where servicepointmanager.servercertificatevalidationcallback ... This code represents a validation of a server-side certificate (a certificate that is not issued by a Third-party authority, such as a build itself).

((A, B, C, D) => {return true;}) is a new attribute lambda expression for. Net 3.5 so that you do not have to write a function first and then pass in the function name to Remotecertificatevalidationcallback

Path.GetFullPath () can pass in a relative path, just like the example code. More convenient than AppDomain.CurrentDoman.BaseDirectory to filter strings.

The subsequent call procedure after setting the ClientCertificates is the same as the normal HTTP connection. Alas, although the call succeeded, but webservice in the. NET platform seems to be more ancient technology, online search of the book on WebService is only 2003 years, to refuel learning WCF!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.