posted 13 years ago
Hi All,
I have created a singleton service class by implementing "weblogic.cluster.singleton.SingletonService" and deployed this as an ear in weblogic 10.3.
Deployment is done on a cluster(ManagedServer1,ManagedServer2).
The activate method gets invoked on only of the server ManagedServer1 and necessary actions are taking place. When ManagedServer1 is brought down how to migrate this action to ManagedServer2.
When ManagedServer1 is down, the ear is in ManagedServer2 and the activate method is called and its running as infinite loop.
When ManagedServer1 is up everything works fine.
Not sure where I have gone wrong.Could anyone please help me out