client autentication for soap

G

Guest

hello,
i have to reach a web service which need a client autentication with
certificate.
the certificate they gave me is in pkcs#12 format .p12 file.
i have istalled this cert both on local_machine and current_user and i
succesfully reach the service via browser (IE 6.0).
Now i have to set up an asp.net solution in which i call this service.

i found many example with x.509 certificates but mine is pkcs#12, i also
found some example/tools for export in x.509 format but neither of these
work.

any suggestion?
thank you in advance
 
L

Lance R.

i found many example with x.509 certificates but mine is pkcs#12, i
found some example/tools for export in x.509 format but neither
work.

You can do this with the IPWorks SOAPS component that is included in
IP*Works SSL (http://www.nsoftware.com/products/component/?c=SOAPS&sku=is).


You can configure it to use a PFX file (same as .p12) like
so:

Soaps1.SSLCertStoreType =
SoapsSSLCertStoreTypes.sstPFXFile;
Soaps1.SSLCertStore =
@"C:\mypfx.pfx";
Soaps1.SSLCertSubject = "My Cert
Subject";

Regards,
Lance R.
/n software
http://www.nsoftware.com/

-
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top