Click here to Skip to main content
Licence CPOL
First Posted 2 Feb 2007
Views 19,887
Bookmarked 19 times

Send a request to an SSL page from C#

By | 2 Feb 2007 | Article
How to send a request to an SSL page from C#.

Introduction

Here, we will see a simple way to make a request to a page of type SSL from C#, using the HttpWebRequest class.

You can take this article as a reference: http://msdn2.microsoft.com/en-us/library/aa720131(VS.71).aspx.

Content

The first thing we must do is generate a class that implements the IcertificatePolicy interface. The class will have the form:

public class MyPolicy : ICertificatePolicy 
{ 
    public bool CheckValidationResult( 
            ServicePoint srvPoint 
            , X509Certificate certificate 
            , WebRequest request 
            , int certificateProblem) 
    { 
        //Return True to force the certificate to be accepted. 
        return true; 
    } // end CheckValidationResult 
}

Next, to use this class, we must write:

//Set certificatePolicy. 
System.Net.ServicePointManager.CertificatePolicy = new MyPolicy();

This call will be done before we instantiate the HttpWebRequest class. Before we run the application, we must modify the machine.config file, which is in the %WINDIR%\Microsoft.NET\Framework\v1.1.4322\CONFIG directory. The modifications should be:

Find the node called servicePointManager and modify the value of the checkCertificateName attribute. This has the value true by default, and you must change the value to false. Then this node will look like this:

<servicePointManager checkCertificateName="false" 
      checkCertificateRevocationList="false"/>

Refer to Send a content type “multipart/form-data” request from C# for an example.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Pablo Russoniello

Web Developer

Argentina Argentina

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThanks Pablo, Pinmemberij_mac6:16 8 May '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 2 Feb 2007
Article Copyright 2007 by Pablo Russoniello
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid