[appengine-java] Cron Jobs Not Updating on Deploy

2011-01-28 Thread Sam Edwards
I've been doing deploys since yesterday afternoon and I keep consistently getting errors after it is deployed and it is updating the cron jobs. This has been working in up until early yesterday afternoon, so I'm not sure of the issue. Below I have the console text from the deploy as well as the e

[appengine-java] Cron jobs in google app engine

2010-02-22 Thread Sowji
Hi, Google App Engine document specefied that, " The dev appserver doesn't automatically run your cron jobs. You can use your local desktop's cron or scheduled tasks interface to hit the URLs of your jobs with curl or a similar tool." Is this means we need any external interfaces to hit our c

Re: [appengine-java] cron jobs

2010-02-18 Thread bimbo jones
Hi, if you want it to be printed on the browser you should use pw.println("cron"); pw.close(); instead of System.out.println("cron"); 2010/2/18 Sowji > Hi, > Please help me in cron jobs,in google app engine. > My program main code is as follows. > -- >

[appengine-java] cron jobs

2010-02-18 Thread Sowji
Hi, Please help me in cron jobs,in google app engine. My program main code is as follows. -- import java.io.IOException; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.List; import java.util.Timer;

Re: [appengine-java] Cron Jobs in Java

2009-12-10 Thread maksud
Its fairly simple to imlement a cron job. First Create a *cron.xml* in your web/WEB-INF folder. (Along with web.xml appengine-web.xml etc.) It contains the definition of the servlet the cron will perform. The url is the url for your servlet and schedule is the timing. /cron/myjob Process my j

[appengine-java] Cron Jobs in Java

2009-12-10 Thread NG12
Hey all, So I'm writing a web app in Java. So far everything is going really well, and I'm almost done. However, for the life of me, I cannot figure out how to make a Cron job. I'm new to web development, but I can't even find simple examples of how to set one up. http://code.google.com/appengine