-
as seen on Server Fault
- Search for 'Server Fault'
I am trying to make an application that acts like a desktop application for all the computers in our network. I have already got a windows forms app that works like I want it to, and I'm using the task scheduler to start it on login.
We would really like it if the process as well as the task is…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Will be sending out e-mails from an application on a scheduled basis.
I have an EmailController in my ASP.NET MVC application with action methods, one for each kind of notification/e-mail, that will need to be called at different times during the week.
Question: Is Windows Scheduler (running…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I've been having an intermittent problem for some time now with the Windows Task Scheduler that I can't work out. I use the task scheduler to run a C# app I've written that has various plugins used to ensure production systems are working.
This task scheduler itself is actually a production system…
>>> More
-
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 have a the following;
private String cronExpression = "";
private final String jobID = "MyJObID";
...
Scheduler scheduler = ServiceLocator.getInstance().getScheduler();
CronTrigger trigger = new CronTrigger(jobID , Scheduler.DEFAULT_GROUP, cronExpression);
JobDetail jobDetail = new JobDetail(jobID…
>>> More