Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Webservice that I suppose to access is deployed in Websphere Application Server 7 and it is running on http/https protocol with self signed certificates on remote Linux machine.

I have created java client using the stub generated by axis2 engine. It is working pretty well with http protocol.

To access the same webserice using https, I know we have to specify keyStore, keyStoreType, trustStore and trustStoreType using System.setProperty() method.

Could someone please let me know how to get/generate the keyStore/trustStore files to be used in my client java code?

share|improve this question
Followed the following steps to invoke webservice using https protocol 1. Create KeyStore and Trust store 2. Export Server's public key from the Server certificate 3. Import public key to the trust store of the client 4. Use the keystore and truststore locations in client java program. – Hemanth Aug 17 '12 at 9:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.