How to setup Apache Wink Client keystore and truststore

1.7k Views Asked by At

How do I set a client side keystore and truststore in an Apache Wink Client

I cannot find any documentation on how to do it.

http://wink.apache.org/documentation/1.2.1/Apache_Wink_User_Guide.pdf

1

There are 1 best solutions below

4
On

I think the "usual" code initializing the SSLContext will work.

Example how to load the truststore:

String path = ....
char[] password = ....
KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
keyStore.load(new FileInputStream(path), password );
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
tmf.init(keyStore);
SSLContext ctx = SSLContext.getInstance("SSL");
ctx.init(null, tmf.getTrustManagers(), null);

If you also need a keystore for client certificate, use the KeyStoreFactory in a similar way or implement a KeyManager