[jboss-user] [EJB 3.0] - Re: EJB3 & SSL not working in JBoss 5 Beta3?

javidjamae do-not-reply at jboss.com
Sat Oct 11 01:43:26 EDT 2008


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#4181632

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4181632



More information about the jboss-user mailing list