I'm using Weblogic 6.1 and I wonder if Weblogic runs the servlet container and the ejb container in separate JVMs. Another question is: Can I use local interfaces in order to access an EJB from a Web App. if both are in the same server? Thanks in advance. Cristian.
Cristian Cardenas
Ranch Hand
Joined: Jan 29, 2002
Posts: 50
posted
0
a
Qintao Zhao
Greenhorn
Joined: Aug 29, 2000
Posts: 2
posted
0
Answers (1) 1 JVM (2) Pack your .war and .jar in a .ear file
Rahul Mahindrakar
Ranch Hand
Joined: Jul 28, 2000
Posts: 1831
posted
0
Can I use local interfaces in order to access an EJB from a Web App. if both are in the same server?
Thats the very purpose of Local Interfaces. One does not want to make remote calls for invoking beans that exist in the local machine. So the answer is Yes