M
Mike
I'm posting this here because no one responded to my post in the compact
framework NG and this is a MSDN "managed" newsgroup and I'm a MSDN
subscriber.
I'm unable to make a https connection through a proxy server using
the compact framework. I can connect with no problem using http, but when I
add the "s" after "http" in the URI, I get a System.Net.WebException raised:
System.Net.WebException.Message = "Could not establish secure channel for
SSL/TLS"
Here is what the code looks like (VB):
----------------------------------------------------------------------------
------
myRequest = Utils.CreateWebRequest("https://www.server.com/page.php")
Try
myResponse = myRequest.GetResponse()
Catch ex As System.Net.WebException ' Exception from above line is caught
here
msgbox ex.message
End Try
----------------------------------------------------------------------------
framework NG and this is a MSDN "managed" newsgroup and I'm a MSDN
subscriber.
I'm unable to make a https connection through a proxy server using
the compact framework. I can connect with no problem using http, but when I
add the "s" after "http" in the URI, I get a System.Net.WebException raised:
System.Net.WebException.Message = "Could not establish secure channel for
SSL/TLS"
Here is what the code looks like (VB):
----------------------------------------------------------------------------
------
myRequest = Utils.CreateWebRequest("https://www.server.com/page.php")
Try
myResponse = myRequest.GetResponse()
Catch ex As System.Net.WebException ' Exception from above line is caught
here
msgbox ex.message
End Try
----------------------------------------------------------------------------