<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community: Message List -  cfschedule</title>
    <link>https://forums.adobe.com/community/coldfusion/documentation?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Wed, 02 Jan 2013 00:11:05 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2013-01-02T00:11:05Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4960913?tstart=0#4960913</link>
      <description>&lt;!-- [DocumentBodyStart:08d2010a-d62b-4efb-bcdc-57e677742d16] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span&gt;Those who may want more information on the new scheduling feature in CF10 should see the corresponding chapter in the "Developing CF Apps" manual of the CF docs: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d31851899e53a51353e870493-8000.html" rel="nofollow"&gt;http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d31851899e53a51353e87049 3-8000.html&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:08d2010a-d62b-4efb-bcdc-57e677742d16] --&gt;&lt;img src='/beacon?t=1415921510268' /&gt;</description>
      <pubDate>Wed, 02 Jan 2013 00:11:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4960913?tstart=0#4960913</guid>
      <dc:date>2013-01-02T00:11:05Z</dc:date>
      <clearspace:dateToText>1 year 10 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4747984?tstart=0#4747984</link>
      <description>&lt;!-- [DocumentBodyStart:8a6f6b5d-d9cd-41ce-9212-6694513247a8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;The 'file' attribute's description should note: "The file can only have a .txt or .log extension by default. You can add more extensions in cfusion\lib\neo-cron xml."&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;This restriction is new in ColdFusion 10.&amp;nbsp; ER #3336106 has been filed to also support .htm &amp;amp; .html extensions by default: &lt;/span&gt;&lt;a class="jive-link-external-small" href="https://bugbase.adobe.com/index.cfm?event=bug&amp;amp;id=3336106" rel="nofollow"&gt;https://bugbase.adobe.com/index.cfm?event=bug&amp;amp;id=3336106&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8a6f6b5d-d9cd-41ce-9212-6694513247a8] --&gt;</description>
      <pubDate>Thu, 04 Oct 2012 01:34:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4747984?tstart=0#4747984</guid>
      <dc:date>2012-10-04T01:34:01Z</dc:date>
      <clearspace:dateToText>2 years 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4528130?tstart=0#4528130</link>
      <description>&lt;!-- [DocumentBodyStart:0df0b413-c499-4ee3-9ed6-ec5142b00ad0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;@MrMJackson, here are some examples for returning a task's status (Running/Paused/Expired):&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;[cfschedule action="update" task="myTask" startdate="1/1/2014" starttime="12:00 AM" interval="monthly" url="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://a" rel="nofollow"&gt;http://a&lt;/a&gt;&lt;span&gt;" /]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;[cfschedule action="list" task="myTask" result="q1" /]&lt;/p&gt;&lt;p&gt;[cfdump var="#q1.status#" /]&lt;/p&gt;&lt;p&gt;[cfschedule action="pause" task="myTask" /]&lt;/p&gt;&lt;p&gt;[cfschedule action="list" task="myTask" result="q2" /]&lt;/p&gt;&lt;p&gt;[cfdump var="#q2.status#" /]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Returns: Running Paused&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;[cfschedule action="update" task="myTask" startdate="1/1/2011" starttime="12:00 AM" interval="once" url="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://a" rel="nofollow"&gt;http://a&lt;/a&gt;&lt;span&gt;" /]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;[cfschedule action="list" task="myTask" result="q3" /]&lt;/p&gt;&lt;p&gt;[cfdump var="#q3.status#" /]&lt;/p&gt;&lt;p&gt;[cfschedule action="list" result="q4" /]&lt;/p&gt;&lt;p&gt;[cfdump var="#q4.status#" /]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Returns: Running Expired&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;That should return "Expired Expired". I will file a bug.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;-Aaron&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0df0b413-c499-4ee3-9ed6-ec5142b00ad0] --&gt;</description>
      <pubDate>Fri, 29 Jun 2012 08:57:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4528130?tstart=0#4528130</guid>
      <dc:date>2012-06-29T08:57:54Z</dc:date>
      <clearspace:dateToText>2 years 5 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4528048?tstart=0#4528048</link>
      <description>&lt;!-- [DocumentBodyStart:c1480d5f-d9bf-49ce-87f9-cec05db540f5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;It'd help if comments didn't hide code.&amp;nbsp; Here are the examples again, just replace the square brackets w/ angle brackets:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;[cfschedule action="update" task="myTask" startdate="1/1/2012" starttime="12:00 AM" interval="once" url="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://a" rel="nofollow"&gt;http://a&lt;/a&gt;&lt;span&gt;" /]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;[cfschedule action="delete" task="myTask" /]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;[cfschedule action="update" task="myTask" startdate="1/1/2012" starttime="12:00 AM" interval="once" url="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://a" rel="nofollow"&gt;http://a&lt;/a&gt;&lt;span&gt;" group="default" /]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;[cfschedule action="delete" task="myTask" /]&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c1480d5f-d9bf-49ce-87f9-cec05db540f5] --&gt;</description>
      <pubDate>Fri, 29 Jun 2012 08:23:04 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4528048?tstart=0#4528048</guid>
      <dc:date>2012-06-29T08:23:04Z</dc:date>
      <clearspace:dateToText>2 years 5 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4528047?tstart=0#4528047</link>
      <description>&lt;!-- [DocumentBodyStart:c3f8767d-e947-4344-a957-f6e9e9d9a287] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;@Lucas Sherwood, the group attribute is only required when deleting a task if the task isn't in the 'default' group.&amp;nbsp; Examples:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;(The group attribute is omitted in the 1st example, b/c the default value for the group attribute is 'default'.)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;-Aaron&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c3f8767d-e947-4344-a957-f6e9e9d9a287] --&gt;</description>
      <pubDate>Fri, 29 Jun 2012 08:19:53 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4528047?tstart=0#4528047</guid>
      <dc:date>2012-06-29T08:19:53Z</dc:date>
      <clearspace:dateToText>2 years 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4527030?tstart=0#4527030</link>
      <description>&lt;!-- [DocumentBodyStart:306dece0-2bf0-4d7d-a45c-421ad3ebf013] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Would be kind of helpful if you were just able to get the status of a scheduled task (on,off,paused...)&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:306dece0-2bf0-4d7d-a45c-421ad3ebf013] --&gt;</description>
      <pubDate>Thu, 28 Jun 2012 19:24:22 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4527030?tstart=0#4527030</guid>
      <dc:date>2012-06-28T19:24:22Z</dc:date>
      <clearspace:dateToText>2 years 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4446997?tstart=0#4446997</link>
      <description>&lt;!-- [DocumentBodyStart:72613ec7-4fa7-4077-899e-24dd2d400e3d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;it also looks like the "Group" property is required for deleting tasks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:72613ec7-4fa7-4077-899e-24dd2d400e3d] --&gt;</description>
      <pubDate>Tue, 29 May 2012 10:19:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4446997?tstart=0#4446997</guid>
      <dc:date>2012-05-29T10:19:29Z</dc:date>
      <clearspace:dateToText>2 years 6 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4440437?tstart=0#4440437</link>
      <description>&lt;!-- [DocumentBodyStart:169f6271-3853-4256-a5d8-9eead7ac3ea6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;"isDaily" is not a valid attribute and should be removed from the attributes table.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;-Aaron&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:169f6271-3853-4256-a5d8-9eead7ac3ea6] --&gt;</description>
      <pubDate>Fri, 25 May 2012 22:57:21 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4440437?tstart=0#4440437</guid>
      <dc:date>2012-05-25T22:57:21Z</dc:date>
      <clearspace:dateToText>2 years 6 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4371368?tstart=0#4371368</link>
      <description>&lt;!-- [DocumentBodyStart:85759420-0fb3-48b6-9f78-bba57ec92903] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;The "invokeHandler" should probably be removed from the "Default" column for onComplete, b/c onComplete does not have a default value.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;-Aaron&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:85759420-0fb3-48b6-9f78-bba57ec92903] --&gt;</description>
      <pubDate>Tue, 01 May 2012 04:36:39 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4371368?tstart=0#4371368</guid>
      <dc:date>2012-05-01T04:36:39Z</dc:date>
      <clearspace:dateToText>2 years 6 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4367603?tstart=0#4367603</link>
      <description>&lt;!-- [DocumentBodyStart:c130038b-8837-448d-9448-e1336d198b2e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;It might be helpful to add this note: "ColdFusion does not invoke Application.cfc methods, when invoking a task's event handler methods."&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;(This is by design, per: #3151858.)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!,&lt;/p&gt;&lt;p&gt;-Aaron&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c130038b-8837-448d-9448-e1336d198b2e] --&gt;</description>
      <pubDate>Sat, 28 Apr 2012 21:38:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4367603?tstart=0#4367603</guid>
      <dc:date>2012-04-28T21:38:38Z</dc:date>
      <clearspace:dateToText>2 years 7 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4281930?tstart=0#4281930</link>
      <description>&lt;!-- [DocumentBodyStart:fc610d6e-4319-41b8-b4e2-77a294815cfb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Three more things:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) The "Chained Task" feature should be documented.&lt;/p&gt;&lt;p&gt;2) The 'Required if action="update"' should be removed from the Req/Opt column for "Operation". This is b/c operation has a default value: HTTPRequest. Thus it is not required to pass this attribute.&lt;/p&gt;&lt;p&gt;3) The interval, startDate, and startTime attributes are no longer required for action="update" in CF10. If omitted, the task will become a chained task. So the 'Required if action="update"' should be removed from the Req/Opt column for each of these 3 attributes as well.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;-Aaron Neff&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fc610d6e-4319-41b8-b4e2-77a294815cfb] --&gt;</description>
      <pubDate>Thu, 22 Mar 2012 02:46:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4281930?tstart=0#4281930</guid>
      <dc:date>2012-03-22T02:46:14Z</dc:date>
      <clearspace:dateToText>2 years 8 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re:  cfschedule</title>
      <link>https://forums.adobe.com/message/4281819?tstart=0#4281819</link>
      <description>&lt;!-- [DocumentBodyStart:917d5486-4bb6-46d2-94b1-7e3a1b5807e7] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;The "result" attribute is undocumented. It is used for the list action. The result attribute should be documented in these 2 places:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) "History" (ColdFusion Zeus: Added the attributes..)&lt;/p&gt;&lt;p&gt;2) Attributes table&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;-Aaron&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:917d5486-4bb6-46d2-94b1-7e3a1b5807e7] --&gt;</description>
      <pubDate>Thu, 22 Mar 2012 01:51:18 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4281819?tstart=0#4281819</guid>
      <dc:date>2012-03-22T01:51:18Z</dc:date>
      <clearspace:dateToText>2 years 8 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>cfschedule</title>
      <link>https://forums.adobe.com/message/4281818?tstart=0#4281818</link>
      <description>&lt;!-- [DocumentBodyStart:c104fc01-67d6-495c-a61c-00f18d3bf0ac] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span&gt;This question was posted in response to the following article: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7c6e.html" rel="nofollow"&gt;http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7 c6e.html&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c104fc01-67d6-495c-a61c-00f18d3bf0ac] --&gt;</description>
      <pubDate>Thu, 22 Mar 2012 01:51:18 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4281818?tstart=0#4281818</guid>
      <dc:date>2012-03-22T01:51:18Z</dc:date>
      <clearspace:dateToText>2 years 8 months ago</clearspace:dateToText>
      <clearspace:replyCount>12</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

