> --
> You received this message because you are subscribed to the Google Groups "Quartz.NET" group.
> To post to this group, send email to quar...@googlegroups.com.
> To unsubscribe from this group, send email to quartznet+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/quartznet?hl=en.
>
This email (and any attachments) is the property of XO Group Inc. or one of its subsidiaries. It is intended only for the person(s) to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Distribution or copying of this email or the information contained herein by anyone other than the intended recipient(s) is strictly prohibited. If you are not an intended recipient and have received this email in error, please notify the sender immediately by replying to this email and destroy all electronic and paper copies of this message.
It's almost like the original configuration xml (quartz_jobs.xml) is cached and it just doesn't take my appended changes. Any ideas why?
Thanks in advance!
-Ram
-----Original Message-----
From: quar...@googlegroups.com [mailto:quar...@googlegroups.com] On Behalf Of Nuno Maia
Sent: Sunday, March 18, 2012 7:05 AM
To: quar...@googlegroups.com
Subject: Re: [quartznet:2953] Quartz Job doesn't fire
If you have your logging turned on - can you tell if the Job XML file is being parsed correctly? Also check your CRON trigger cron-expression - here's a good site - http://www.cronmaker.com/ just to be sure.
Best Regards,
Mark Gillen
2012-03-26 10:35:00,011 [CommerceScheduler_Worker-2] INFO Quartz.Job.NativeJob [RunNativeCommand(0)] - About to run cmd.exe /C "D:\siteroot\ConsoleApplications\Partner.exe "...
But If I open up task manager, my .exe that usually takes just 3 -4 minutes to run just continues to run.
Here's my Quartz config: I changed the threadcount value from "1" to 2 Thanks in advance!
--Ram
<log4net>
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="D:\\siteroot\\ia_logs\\QuartzServerLog.log" />
<appendToFile value="true" />
<datePattern value="yyyyMMdd" />
<rollingStyle value="Date" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="5MB" />
<filter type="log4net.Filter.LevelRangeFilter">
<acceptOnMatch value="true" />
<levelMin value="DEBUG" />
<levelMax value="FATAL" />
</filter>
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%method(%line)] - %message %exception%newline" />
</layout>
</appender>
<root>
<level value="DEBUG" />
<appender-ref ref="RollingLogFileAppender" />
</root>
</log4net>
<quartz>
<add key="quartz.scheduler.instanceName" value="CommerceScheduler" />
<!-- Configure Thread Pool -->
<add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz" />
<add key="quartz.threadPool.threadCount" value="1" />
<add key="quartz.threadPool.threadPriority" value="Normal" /> <!-- Configure Job Store -->
<add key="quartz.jobStore.misfireThreshold" value="60000" />
<add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz" />
<add key="quartz.plugin.xml.type" value="Quartz.Plugin.Xml.JobInitializationPlugin, Quartz" />
<add key="quartz.plugin.xml.fileNames" value="~/quartz_jobs.xml" />
</quartz>
-----Original Message-----
From: Ramarao Prahalad
Sent: Friday, March 23, 2012 11:32 AM
To: quar...@googlegroups.com
Subject: RE: [quartznet:2953] Quartz Job doesn't fire
Hello All, we moved to a new environment and I am having the same issue as below: The second job doesn't run. If there is a console app already running in an environment and we deploy another and append a <Job></Job> to the existing quartz_jobs.xml, are there any other steps I need to do other than Restarting the quartz service? It's the same xml file that runs fine in our DEV environment but we move it to QA with the additional job appended, the second job just doesn't run. My Cron expression is correct and permissions are all correct. Nothing gets logged in the logs and the second exe just doesn't run.
It's almost like the original configuration xml (quartz_jobs.xml) is cached and it just doesn't take my appended changes. Any ideas why?
Thanks in advance!
-Ram
-----Original Message-----
From: quar...@googlegroups.com [mailto:quar...@googlegroups.com] On Behalf Of Nuno Maia
Sent: Sunday, March 18, 2012 7:05 AM
To: quar...@googlegroups.com
Subject: Re: [quartznet:2953] Quartz Job doesn't fire
Quartz will not force the application shutdown, the application must
exit by it self. You can control waiting the termination by using the
job parameter "waitForProcess"