<CFSCHEDULE ACTION="Update"
TASK="taskname"
OPERATION="HTTPRequest"
FILE="filename"
PATH="path_to_file"
STARTDATE="date"
STARTTIME="time"
URL="URL"
PUBLISH="Yes/No"
ENDDATE="date"
ENDTIME="time"
INTERVAL="seconds"
REQUESTTIMEOUT="seconds"
USERNAME="username"
PASSWORD="password"
RESOLVEURL="Yes/No"
PROXYSERVER="hostname">
<CFSCHEDULE ACTION="Delete" TASK="TaskName">
<CFSCHEDULE ACTION="Run" TASK="TaskName">
ACTION
Required. Valid entries are:
- Delete - Deletes task specified by TASK.
- Update - Creates a new task if one does not exist.
- Run - Executes task specified by TASK.
TASK
Required. The name of the task to delete, update, or run.
OPERATION
Required when creating tasks with ACTION="Update". Specify the type of operation the scheduler should perform when executing this task. For now only OPERATION="HTTPRequest" is supported for static page generation.
FILE
Required with PUBLISH="Yes." A valid filename for the published file.
PATH
Required with PUBLISH="Yes." The path location for the published file.
STARTDATE
Required when ACTION="Update". The date when scheduling of the task should start.
STARTTIME
Required when creating tasks with ACTION="Update". Enter a value in seconds. The time when scheduling of the task should start.
URL
Required when ACTION="Update". The URL to be executed.
PUBLISH
Optional. Yes or No. Specifies whether the result should be saved to a file.
ENDDATE
Optional. The date when the scheduled task should end.
ENDTIME
Optional. The time when the scheduled task should end. Enter a value in seconds.
INTERVAL
Required when creating tasks with ACTION="Update". Interval at which task should be scheduled. Can be set in seconds or as Once, Daily, Weekly, Monthly, and Execute. The default interval is one hour and the minimum interval is one minute.
REQUESTTIMEOUT
Optional. Customizes the REQUESTTIMEOUT for the task operation. Can be used to extend the default timeout for operations that require more time to execute.
USERNAME
Optional. Username if URL is protected.
PASSWORD
Optional. Password if URL is protected.
PROXYSERVER
Optional. Host name or IP address of a proxy server.
RESOLVEURL
Optional. Yes or No. Specifies whether to resolve links in the result page to absolute references.
|