> Guess I need some hand holding :(
>
[quoted text clipped - 13 lines]
>
> 1. Under what format should I export the certificate from IE?
PKCS12 is good, and the standard Java classes can read it (1.4.2 can,
for sure, maybe earlier)
> 2. How do I load that cert into a key factory I can use from Java?
I'm using the following code to set up an SSLSocket Factory with my
client certificate loaded into it.
private SSLSocketFactory getFactory() throws Exception {
SSLContext sc = SSLContext.getInstance("SSL");
KeyManagerFactory kmf =
KeyManagerFactory.getInstance("SunX509");
KeyStore ks = KeyStore.getInstance("PKCS12");
ks.load(
new FileInputStream("exported key.p12"),
"keyStorePassword");
kmf.init(ks, "keyPassword");
sc.init(
kmf.getKeyManagers(),
_null,
new SecureRandom());
return (SSLSocketFactory)sc.getSocketFactory();
}
> 3. I suspect there is no answer to this, but is there any way other
> than trial and error to figure out which of the certificates in the IE
> store the web page is using?
Can't help you there. Sorry.
Regards,
Rogan

Signature
Rogan Dawes
nntp_AT_dawes*DOT*za-DOT-net