1 Reply Latest reply on Feb 22, 2004 1:48 AM by starksm64

    2 methods of setting up SSL. Which one is correct?

    rcoutinho

      Hi All,

      I am setting up SSL between my java client and my EJBs. In the paid docs it says that I should put the following in the jboss.xml of the EJB...

      <configuration-name>Standard Stateless SessionBean</configuration-name>
      <invoker-bindings>
       <invoker>
       <invoker-proxy-binding-name>stateless-ssl-invoker</invoker-proxy-binding-name>
       </invoker>
      </invoker-bindings>


      ...but in the admin documentation it states that I should put the following in the jboss.xml...

      <configuration-name>Standard Stateless SessionBean</configurationname>
      <home-invoker>jboss:service=invoker,type=jrmp,socketType=SSL</home-invoker>
      <bean-invoker>jboss:service=invoker,type=jrmp,socketType=SSL</bean-invoker>


      So. Which one is the best approach to use?

      I managed to SSL working based on the first approach. However I did not have the
      <configuration-name>Standard Stateless SessionBean</configuration-name>
      in the jboss.xml

      Any comments are welcome.