Previously, I was trying to use client certificate on .NET CF 2.0 (see here) and I ultimately had to give up. I'm now on .NET CF 3.5 which has support for the ClientCertificates property on the HttpWebRequest object. However, I can't figure out how to instantiate the X509Certificate or X509Certificate2 object with a pfx file. On the full framework, I can simply do something like new X509Certificate2(filename, password). If I try to create the object with bytes read from a .pfx file, I get an exception saying ".NET CF 3.5 does not support pfx files". So how do I specify a client certificate with a private key for use with the ClientCertificates property?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
According to MDSN there are only 2 contructors available/supported by the compact framework: The .NET CF supported constructors have a little device icon next to them in the first column. These are:
http://msdn.microsoft.com/en-us/library/ms148413.aspx
|
|||||||||||
|