Does anybody know if it is possible to deploy ebjs in separate jar or ear files if they reference each other via the local interface? (in Weblogic)
The only way that I can get it to work is to deploy ejbs that are referenced by a local interface in the same ear file as the ejb that references them.
Dave Segal
-
local refs in weblogic (2 messages)
- Posted by: Dave Segal
- Posted on: July 03 2003 12:42 EDT
Threaded Messages (2)
- local refs in weblogic by Raffi Basmajian on July 03 2003 20:12 EDT
- The only way by ling xd on July 03 2003 22:42 EDT
-
local refs in weblogic[ Go to top ]
- Posted by: Raffi Basmajian
- Posted on: July 03 2003 20:12 EDT
- in response to Dave Segal
If I remember correctly, for local refs to work properly, the ejbs must be colocated, so they need to be in the same JAR file, otherwise, it craps out.
Raffi -
The only way[ Go to top ]
- Posted by: ling xd
- Posted on: July 03 2003 22:42 EDT
- in response to Dave Segal
I think the same ear file is the only way,because you must keep the client program in the same thread with the ejbs if you want to use local refs.