In case you're trying this out on JBoss 5 CR2, to get this to work I had to use the
following service:
| <server>
|
| <mbean code="org.jboss.remoting.transport.Connector"
|
name="jboss.remoting:type=Connector,transport=sslsocket3843,handler=ejb3">
| <attribute
name="InvokerLocator">sslsocket://${jboss.bind.address}:3843</attribute>
| <attribute name="Configuration">
| <config>
| <handlers>
| <handler
subsystem="AOP">org.jboss.aspects.remoting.AOPRemotingInvocationHandler</handler>
| </handlers>
| </config>
| </attribute>
| </mbean>
|
| </server>
|
and the following bean binding:
| @RemoteBindings(
| {@RemoteBinding(clientBindUrl = "sslsocket://127.0.0.1:3843",
| jndiBinding="StatelessSSL")})
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4181632#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...