Hi all,
I am trying to run the SSL tutorial for EJB3 on jboss-5.1.0.GA and I'm having a hard time with it.
I've read the AccessingEJB3soverSSL Wiki page but it seems to be written for JBoss 4. What file do I need to edit to set up the SSL connector? The Wiki page says to add an mbean $JBOSS_HOME/server/default/deploy/ejb3.deployer/META-INF/jboss-service.xml but that file doesn't exist in JBoss 5. Here's what I see in that directory:
ejb3-deployers-jboss-beans.xml jpa-deployers-jboss-beans.xml
No jboss-service.xml to be found. So where should I insert the mbean:
<mbean code="org.jboss.remoting.transport.Connector"
name="jboss.remoting:type=Connector,transport=socket3843,handler=ejb3">
<depends>jboss.aop:service=AspectDeployer</depends>
<attribute name="InvokerLocator">sslsocket://0.0.0.0:3843</attribute>
<attribute name="Configuration">
<handlers>
<handler subsystem="AOP">org.jboss.aspects.remoting.AOPRemotingInvocationHandler</handler>
</handlers>
</attribute>
</mbean>
Thanks in advance for any help you can give.
-Andrew Gronosky