Hi,
I am using Service Locator pattern to look up EJB Home objects and Cache them. I am planning to Cluster my WebLogic Application Server. Since I am caching my Home objects will it create problems in Clustered environment? If it fails is there any solution to implement Service Locator in Clustered environment? Please let me know
Thanks,
Prasanna Kumar
-
Service Locator in Clustered Environment (1 messages)
- Posted by: Prasanna K
- Posted on: October 15 2004 07:39 EDT
Threaded Messages (1)
- Service Locator in Clustered Environment by Kingshuk Bandyopadhyay on October 15 2004 08:46 EDT
-
Service Locator in Clustered Environment[ Go to top ]
- Posted by: Kingshuk Bandyopadhyay
- Posted on: October 15 2004 08:46 EDT
- in response to Prasanna K
Since I am caching my Home objects will it create problems in Clustered environment?
No, if your home object is set as clusterable too. You can do this by setting <home-is-clusterable>True</home-is-clusterable> in weblogic-jar.xml. Probably this is true by default - not sure. In this case the home object you are caching in the service locator is a cluster aware object - the usual routing logic and failover applies.
Kingshuk