I'm trying to specify a client SSL certificate using an HttpWebRequest. In the full framework version of my application I am able to simply use the ClietnCertificates collection property to add my client certs. Unfortunately, this property does not exist on the compact framework. Are there any other ways I could accomplish this? Maybe there is a 3rd party library that I need to use for this?
Update: Ok, I think I found an SSL stream library that should work on CF, but now I need a HTTP client library. I can't use the HttpWebRequest since I won't be able to specify my own custom stream object. Any ideas?