Scheduling HTTP Post Actions
Are there any limits to scheduling http post actions? The reason I'm asking is because my script is set to perform 10 such actions once a week and it always stops after 8. The code below shows the basic loop.
- for each r in CALENDARS [(SUBLIST is not null)]
- {
- standard_name = r.Organization + ": " + r.Calendar;
- TOPIC = "Weekly News for " + standard_name;
- POST_BODY = thisapp.NEWSLETTER(r.Calendar);
- POST_MAP = { "FROM" : r.Sender, "SUBJECT" : TOPIC, "BODY" : POST_BODY, "FILTER" : r.SUBLIST };
- SESPOST = postUrl("http://somesite.net/zoho_post.php", POST_MAP);
- //do some accounting calcs
- }
John M. Whitney