Hello Mates,
In JBoss 6, We can use bellow annotations on an EJB,
@RemoteBindings({
@RemoteBinding(clientBindUrl="sslsocket://${jboss.bind.address}:3843", jndiBinding="nms-ear/SSLSecuredRemoteSession/remote")
,@RemoteBinding(jndiBinding="nms-ear/SecuredRemoteSession/remote")
})
@Remote
public interface ISecuredRemoteSession extends ILogin{
....
But, in JBoss 7, this annotation is NOT supported by default. How do you bind your EJB interface to an SSL IP and port?