Configure the sslsocket and sslbisocket transports - server side

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 3268

This topic has not yet been written. The content below is from the topic description.
Server side Remoting provides a configurable extension of javax.net.ssl.SSLServerSocketFactory called org.jboss.remoting.security.SSLSocketFactoryService. It depends on an instance of org.jboss.remoting.security.SSLSocketBuilder, which creates and configures an instance of javax.net.ssl.SSLContext and uses it to create an instance of javax.net.SSLServerSocketFactory. It is the SSLSocketBuilder which can be configured with keystores, etc. SSLSocketBuilder is described in more detail in the Remoting Guide. For example, JBoss Messaging uses instances of SSLSocketFactoryService and SSLSocketBuilder as follows in its configuration of the sslbisocket transport: jboss.messaging:service=SocketBuilder,type=SSL false ${jboss.server.home.url}/deploy/messaging/messaging.keystore secureexample secureexample TLS SunX509 JKS Through these two MBeans, JBoss Messaging provides itself with a suitably configured instance of an SSLServerSocketFactory on the server side.