Scheduling HTTP Post Actions

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.

  1. for each r in CALENDARS  [(SUBLIST is not null)]
  2. {
  3.     standard_name = r.Organization + ": " + r.Calendar;
  4.     TOPIC = "Weekly News for " + standard_name;
  5.     POST_BODY = thisapp.NEWSLETTER(r.Calendar);
  6.     POST_MAP = { "FROM" : r.Sender, "SUBJECT" : TOPIC, "BODY" : POST_BODY, "FILTER" : r.SUBLIST };
  7.     SESPOST = postUrl("http://somesite.net/zoho_post.php", POST_MAP);
  8.     //do some accounting calcs   
  9. }

John M. Whitney