This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I'm using both local and remote interfeces for client facing EJBs. Web app. uses local interface and the swing uses remote interface. If we cluster this application, can the web application talk to another node instance in the cluster...?
Thanks!
Pavel Grushetzky
Greenhorn
Joined: Oct 12, 2005
Posts: 13
posted
0
Local interfaces imply that both client and EJB container are running in the same JVM (as a consequence, the same node). If you plan to cluster specifically business layer, you probably wouldn't be able to use local interfaces.
Steve
Greenhorn
Joined: Oct 02, 2005
Posts: 14
posted
0
I have decided to cluster in the web application level, keeping the web app and ejb as a single module.
Thanks for the reply.
Dominik Smith
Greenhorn
Joined: Oct 10, 2005
Posts: 16
posted
0
Steve are you thinking about running several instances of the app server? There's only one machine for the app server so I'm not sure what clustering yo ave in mind.