b1nary0mega
5/13/2016 - 1:27 PM

Provide a list of all scheduled tasks for the CF application server

Provide a list of all scheduled tasks for the CF application server

<head>
	<title>Scheduled Tasks</title>
</head>

<body>
<cfobject type="JAVA" action="Create" name="factory" class="coldfusion.server.ServiceFactory">
<cfset allTasks = factory.CronService.listAll()/>
<cfloop index="i" from="1" to="#ArrayLen(allTasks)#">
    <cfdump var="#allTasks[i]#" />
</cfloop>

</body>
</html>