We use quartz for scheduling jobs on tomcat nodes, the job runs on a frequency rather then a set time so its helpful to know when is the next time the job will be fired and for testing purposes its good if we can fire the job manually instead of waiting for the trigger to happen as some jobs runs only once a day. I wrote this small JSP that exactly allows to do the same. Here is the sample code for jsp for googlers like me <%@page import="org.quartz.ee.servlet.QuartzInitializerServlet" %> <%@page import="org.quartz.impl.StdSchedulerFactory" %> <%@page import="org.quartz.*" %> <%@page import="java.util.*" %> <% String jobNameToRun=request.getParameter("jobNameToRun"); String groupNameToRun=request.getParameter("groupNameToRun"); String btnTrigger=request.getParameter("btnTrigger"); StdSchedulerFactory factory = (StdSchedulerFactory) pageContext.getServletContext()...