-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi I am using Quartz scheduler to trigger a cron which needs to perform a host of activities.
My Code for the same is as follow:
In the init() method of my InitServlet class, I am defining my TimerServer
public class InitServlet extends HttpServlet {
public void init(ServletConfig config)…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am working on scheduling the tasks using Quartz API. I tried scheduling notepad.exe and in the logs, I see the following line -
org.quartz.jobs.NativeJob runNativeCommand About to runcmd.exe /C c:/WINDOWS/notepad.exe ...
But the notepad is not coming up. Same is the issue with any exe or batch…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have chosen nearly 200 files to write on a position automatically on a particular time. Created a separate job names in Quartz scheduler. The job will be triggered on a time. I can read the files only after all the files have been written. I could not read after one file is written. I have closed…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'd like to maintain a history of jobs that were scheduled by a Quartz scheduler containing the following properties: 'start time', 'end time', 'success', 'error'.
There are two interfaces available for this: ITriggerListener and IJobListener (I'm using the C# naming convention for interfaces because…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have 2 instances which implements 2 different instance IDs in 2 different windows services as:
//windows service 1 instance 1
properties["quartz.scheduler.instanceName"] = "instanceName1";
properties["quartz.scheduler.instanceId"] = "instanceID1";
//windows service 2 instance 2
properties["quartz…
>>> More