schedule « JBoss « Java Enterprise Q&A





1. JBoss Task scheduling: pass argument to method    stackoverflow.com

I'm trying to get a scheduler working in JBoss as 5. So far, I've created my own MBean (it works) and I created my scheduler like this:

<mbean code="org.jboss.varia.scheduler.Scheduler"
     ...

2. How i get the scheduler Jobs in J2ee server    stackoverflow.com

i'm trying to get current Executing Job with the method scheduler.getCurrentlyExecutingJobs(); but i really don't know how should be used. i'm using jboss 4.2 and quartz 1.6

3. How to invoke scheduled job in jboss 5.1?    stackoverflow.com

I have jobs defined in ejb-jar.xml:

<enterprise-beans>
      <message-driven>
         <ejb-name>EMailReminderScheduler</ejb-name>
         <ejb-class>logic.mdb.EMailReminderScheduler</ejb-class>
  ...

4. problem with scheduling in JBOSS    coderanch.com

Hello, I've made a scheduled classs in jboss and filled the scheduler-service.xml as it should, but i've got a problem! when starting the server it says that it can't find the class that should be schedule but if i do a hot redeploy for the scheduler-service.xml file is starts gr8 and work fine. how can i change it to start late ...

5. Need Urgent Help! Exception During Deployment of JBoss Scheduler Service    forums.oracle.com

Hi Folks, I have a web app (.war) to deploy to JBoss 4.0.2, and there's a class in the app that implements org.jboss.varia.scheduler.Schedulable. I want this thing to be invoked by the JBoss Scheduler, but I can't seem to get my Schedulable instance started. Note: This is simply a web deployment (WAR), not a J2EE Application (EAR). I've tried to deploy ...