Click to See Complete Forum and Search --> : Client Certification of .Net Remoting?


huguogang
January 24th, 2003, 09:05 PM
I host .Net Remoting object in IIS, and setup the IIS server to require SSL connection and require client certification.

I have client certification installed on the client machine.

The problem is I don't know how to attach the client certification into the .Net Remoting request.


....
X509Certificate clientCer;

//create remote object hosted on IIS server
RemoteObject ro = new RemoteObject();

//now, how can I attach clientCer into RemoteObject
//?????

Thanks,
huguogang