I am implementing a Windows service that's responsible for running the scheduler and executing the jobs. I want to trigger the jobs from a web application but since the web application does not run a scheduler I can't do anything with the triggers I build.
TriggerBuilder.Create()
.WithIdentity(commandName,groupName)
.ForJob(commandName)
.StartNow()
.Build();
How can I insert the trigger to the database so that the scheduler running in the Windows service can pick it up? Is this supported in Quartz.NET?