3 Replies Latest reply on Feb 15, 2004 8:56 PM by inglass

    Getting EJB from jsp in different container

    inglass

      Anyone know the right way to get EJB objects from an EJB container on another machine? I have tried creating the hashtable of props for client jndi, and that seems to help. But every time I try to access an EJB, it tells me XXX not bound. In my web-inf/web.xml, I have:

      <ejb-ref>
      <ejb-ref-name>ejb/MyEJB</ejb-ref-name>
      <ejb-ref-type>Session</ejb-ref-type>
      myPackage.MyHome
      myPackage.MyRemote
      </ejb-ref>

      Trying to use Resin for web tier and JBoss for mid tier and having no luck getting EJB references.

      Any help would be appreciated.

      Thank you.

      Back to top