0

I am using Weblogic 11. Ejb3.0

I am trying to set up a timer in a cluster environment. I understood from the net that it possible to do via the Singleton service of weblogic.

anyone could show me some concrete implementation how to do it and how to connect the java code to that service so it will trigger the code in the set time?

thanks,

ray.

Has QUIT--Anony-Mousse
  • 76,138
  • 12
  • 138
  • 194
rayman
  • 20,786
  • 45
  • 148
  • 246

1 Answers1

2

A SingletonService is a service which would be active only in one node of a cluster. It is not directly related to timers.

If you want to set up an EJB3 Timer in a cluster environment you can check this blog entry.

fglez
  • 8,422
  • 4
  • 47
  • 78