I have osgi bundle which route message from webservice to remote ejb (on glassfish) by use of camel routing. In order to access remote jndi I need to set up truststore. How can I do that? Is it any configuration in camel route or I have to do it by system properties?
Asked
Active
Viewed 1,182 times
2 Answers
0
you could try putting the following properties in the system.properties file within the etc folder:
javax.net.ssl.keyStore=<keystore location>
javax.net.ssl.keyStorePassword=<keystore password>
javax.net.ssl.trustStore=<truststore location>
javax.net.ssl.trustStorePassword=<truststore password>

taleb
- 996
- 7
- 6