alban
03-15-2008, 07:48 AM
I am trying to call HttpWebRequest like this:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.paypal.com/nvp? (https://api.paypal.com/nvp?[some)[some parameters]");
I then read the response like this:
HttpWebResponse wr = (HttpWebResponse)request.GetResponse();
But unfortunately, I get the following error:
"The request was aborted: Could not create SSL/TLS secure channel."
Do you know what may be causing this?
Any help would be appreciated...
-Alban
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.paypal.com/nvp? (https://api.paypal.com/nvp?[some)[some parameters]");
I then read the response like this:
HttpWebResponse wr = (HttpWebResponse)request.GetResponse();
But unfortunately, I get the following error:
"The request was aborted: Could not create SSL/TLS secure channel."
Do you know what may be causing this?
Any help would be appreciated...
-Alban