Re: Calling my EJB from tomcat webserver

2001-05-03 Thread Jean-Guillaume LALANNE
: Re: Calling my EJB from tomcat webserver I haven't tried running the web component out of a servlet container other than Orion yet. The experiments I have run suggest that Orion maintains a RMI-Context containing the namespaces for ejb, jdbc, jms, First I would try naming your ejb

Calling my EJB from tomcat webserver

2001-05-02 Thread Jean-Guillaume LALANNE
Hi everybody, I am trying to disconnect my webserver from my ejb server. Up to now, I have only worked with Orion as web + ejb server. I decided 2 days ago to experiment the separation of both servers. In order to carry out this experiment, I first tried to access my ejb (still sitting on

Re: Calling my EJB from tomcat webserver

2001-05-02 Thread Earl Marwil
I haven't tried running the web component out of a servlet container other than Orion yet. The experiments I have run suggest that Orion maintains a RMI-Context containing the namespaces for ejb, jdbc, jms, First I would try naming your ejb something like ejb/whip/find/memberfinder and

Re: Calling my EJB from tomcat webserver

2001-05-02 Thread Alex 'Kazuma' Garbagnati
Context iContext = new InitialContext(env); file://ObjectObject object = iContext.lookup( java:comp/env/whip/ejb/find/memberfinder ); I'm using Tomcat for development and Resin on the deployment platform and I do not have any problem. The code is the same and in both cases I'm using something