Closed GoogleCodeExporter closed 9 years ago
I mean 'set'!
#if (!COMPACT_FRAMEWORK && !SILVERLIGHT)
[Browsable(false)]
public X509CertificateCollection ClientCertificates
{ get { return _clientCertificates; }
}
#endif
Original comment by CodHu...@gmail.com
on 13 Mar 2009 at 7:11
Unable to reproduce. When I run this test code against a server which requires
client
certificates if I comment out the ClientCertificates.Add line I get an access
forbidden error:
IStateName proxy = XmlRpcProxyGen.Create<IStateName>();
X509Certificate x509 = new X509Certificate(@"c:\temp\xmlrpcs.cer");
proxy.ClientCertificates.Add(x509);
string ret = proxy.GetStateName(1);
Stepping through the code in the debugger I can see the following line being
executed:
httpReq.ClientCertificates.Add(certificate);
Original comment by ChasC...@gmail.com
on 31 Jul 2009 at 11:05
Original issue reported on code.google.com by
CodHu...@gmail.com
on 13 Mar 2009 at 7:02