I have
JBoss server EJB3 application acting both as Server and Client (communicating with many other servers).
I have security transport set up. More or less implemented as advised on:
http://jbossws.jboss.org/mediawiki/index.php?title=Secure_transport
I have "client" Jboss keystore/truststore set up as system properties. That works fine as long as I have single application running on Jboss.
But, is there another way to set up client keystore/truststore, application specific? Is there a way to have more than one keystores per Jboss, so each web service client application can have its own?
I am consuming web services using EJB3 @WebServiceRef annotation.
Thanks.