dheerajarora / myschedule

Automatically exported from code.google.com/p/myschedule
0 stars 0 forks source link

Question #114

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I want to include User Interface for Quartz Jobs in my webapp. 
As specified I placed the jar file in lib folder, but how to get the UI.
Please provide me steps for doing this.

thanks in advance...

Original issue reported on code.google.com by mangapat...@gmail.com on 17 Apr 2013 at 2:33

GoogleCodeExporter commented 8 years ago
The UI on this MySchedule project comes in WAR file packaged 
(myschedule-xyz.war). You need to place that into an Servlet container server 
to see the UI. If you need help on this area, please google and review standard 
Java Serlvet and how to run war file. There is also brief instruction on our 
UserGuide as well.

There is additional library this MySchedule project provides in jar format 
(myschedule-extraquartz-xyz.jar), but this is just library, not GUI related. 
You use this jar just as any other java jar.

Original comment by saltnlight5 on 17 Apr 2013 at 5:19

GoogleCodeExporter commented 8 years ago
Hi,

How to configure myschedule-xyz.war instead of myschedule-extraquartz-xyz.jar 
to work on the jobs in my own webapp ? 

Original comment by mangapat...@gmail.com on 22 Apr 2013 at 10:10

GoogleCodeExporter commented 8 years ago
Sorry, but I don't understand your question.

Original comment by saltnlight5 on 14 May 2013 at 1:52

GoogleCodeExporter commented 8 years ago
Hi, 

   thanks for response. How can I use myschedule to check the status of the jobs that were running in a separate application. 
Example: 
My web application is running on a tomcat server which developed using spring, 
contains quartz scheduler jobs also. I want to monitor those jobs status.
Here my question is, Can I use myschedule to check the status of the jobs ?
If so how can I use ? 

Original comment by mangapat...@gmail.com on 17 May 2013 at 11:55

GoogleCodeExporter commented 8 years ago
You can enabled remoting your Quartz scheduler that's running in your Spring 
application, then you can use MySchedule as client to view the jobs. Just 
ensure not to start the scheduler as client, then you will be fine.

As enabling Quartz remote, you have ways. 1: Use JMX. 2: Use clustering. 

When using clustering, your client would simply join the cluster, but just 
don't start the scheduler, and you will still able to view all the jobs in the 
cluster.

Hope this helps.

Original comment by saltnlight5 on 19 May 2013 at 1:25

GoogleCodeExporter commented 8 years ago
You can enabled remoting your Quartz scheduler that's running in your Spring 
application, then you can use MySchedule as client to view the jobs. Just 
ensure not to start the scheduler as client, then you will be fine.

As enabling Quartz remote, you have ways. 1: Use JMX. 2: Use clustering. 

When using clustering, your client would simply join the cluster, but just 
don't start the scheduler, and you will still able to view all the jobs in the 
cluster.

Hope this helps.

Original comment by saltnlight5 on 19 May 2013 at 1:25

GoogleCodeExporter commented 8 years ago
Sorry, I meant to say the 1st option is RMI, not JMX. You can read more on 
Quartz docs.

Original comment by saltnlight5 on 19 May 2013 at 1:27

GoogleCodeExporter commented 8 years ago
thank you. I will try.

Original comment by mangapat...@gmail.com on 28 May 2013 at 4:27

GoogleCodeExporter commented 8 years ago

Original comment by saltnlight5 on 11 Jun 2013 at 10:46