Apply for JBOSS Remoting 2.5 or above.
<!-- SSL configuration for JBOSS remoting SSL -->
<mbean code="org.jboss.remoting.transport.Connector"
name="jboss.remoting:type=Connector,transport=sslsocket3843,handler=ejb3">
<attribute name="Configuration">
<config>
<invoker transport="sslsocket">
<attribute name="serverBindAddress">0.0.0.0</attribute>
<attribute name="serverBindPort">${sslport:3843}</attribute>
<attribute name="serverSocketFactory">jboss.remoting:service=ServerSocketFactory,type=SSL</attribute>
</invoker>
<handlers>
<handler subsystem="AOP">org.jboss.aspects.remoting.AOPRemotingInvocationHandler</handler>
</handlers>
</config>
</attribute>
<depends>jboss.remoting:service=ServerSocketFactory,type=SSL</depends>
</mbean>
<mbean code="org.jboss.remoting.security.SSLServerSocketFactoryService" name="jboss.remoting:service=ServerSocketFactory,type=SSL"
display-name="SSL Server Socket Factory">
<depends optional-attribute-name="SSLSocketBuilder" proxy-type="attribute">jboss.remoting:service=SocketBuilder,type=SSL</depends>
</mbean>
<mbean code="org.jboss.remoting.security.SSLSocketBuilder" name="jboss.remoting:service=SocketBuilder,type=SSL" display-name="SSL Server Socket Factory Builder">
<attribute name="UseSSLServerSocketFactory">false</attribute>
<attribute name="KeyStoreURL">${jboss.server.home.dir}/conf/gvuserverkeystore</attribute>
<attribute name="KeyStorePassword">test!!</attribute>
<attribute name="TrustStoreURL">${jboss.server.home.dir}/conf/gvuservertruststore</attribute>
<attribute name="TrustStorePassword">test!!</attribute>
<attribute name="KeyPassword">test!!</attribute>
<attribute name="ClientAuthMode">want</attribute>
<attribute name="SecureSocketProtocol">TLS</attribute>
<attribute name="KeyStoreType">JKS</attribute>
</mbean>