Communication between 2 Enterprise ARcives
Hi,
I have 2 EARs each with separate functionalities. Now i have to use the service provided by the first EAR say Example1.EAR from the second EAR say Example2.EAR. Is there anybody here to help me out?
Thanks in advance
# 1
The simplest approach for cross - Java EE communication within the same server is to use
a Stateless Session Bean that exposes a Remote interface.You can find some examples in the
EJB section of the Java EE 5 Tutorial :
http://java.sun.com/javaee/5/docs/tutorial/doc/
ksaksa at 2007-7-29 17:21:00 >
