Re: Cocoon task scheduler

2002-10-29 Thread Michael Wechner
Ivelin Ivanov wrote: Did you look at Quartz? http://quartz.sourceforge.net/ Well, we have added Quartz to Wyona, and Wyona is based on Cocoon, so ... ;-) I also don't think it's a good idea to add another feature to Cocoon, but maybe this is something for cocoon-apps. We would certainly not

Re: Cocoon task scheduler

2002-10-28 Thread Bertrand Delacretaz
On Monday 28 October 2002 14:02, [EMAIL PROTECTED] wrote: . . . So my question is: what the solution with Cocoon if I want to automate and execute tasks without a HTTP request (for example to execute a task every sunday at 12 o'clock)?? . . . Hi Sylvain, There were some discussions about

Re: Cocoon task scheduler

2002-10-28 Thread Bert Van Kets
There has been a similar thread before. dig up that one first. Cocoon, being a servlet, only reacts to http requests. So the only way to activate things on a timely basis is to use another program that calls a URL, and thus a pipeline, that activates whatever you want to get done. A wget in a

RE: Cocoon task scheduler

2002-10-28 Thread Sylvain.Thevoz
Hello Bert, Sorry but what is a wget? Sylvain -Message d'origine- De: Bert Van Kets [mailto:bert;vankets.com] Date: lundi, 28. octobre 2002 14:21 À: [EMAIL PROTECTED] Objet: Re: Cocoon task scheduler There has been a similar thread before. dig up that one first. Cocoon, being

RE: Cocoon task scheduler

2002-10-28 Thread Morrison, John
web get, it's a unix program. Also available (via cygwin) for windows. J. Hello Bert, Sorry but what is a wget? Sylvain === Information in this email and any attachments are confidential, and may not be copied or

Re: Cocoon task scheduler

2002-10-28 Thread Robert Ellis Parrott
How about cron and a python script, which executes a localhost HTTP query? Python has very good support for HTTP. I'm not convinced that Cocoon needs such a beast, when so much mature functionality is available at the OS level. On Mon, 28 Oct 2002 [EMAIL PROTECTED] wrote: Hello everybody,

RE: Cocoon task scheduler

2002-10-28 Thread Bert Van Kets
But cryptic reply John, g wget is indeed a *nix prog that creates an http request and captures the result. Actually, all you need is a program doesn't matter which one that sends out an http request. Heck, you can even use a scheduled off line favorite in IE for this. You will need to set

RE: Cocoon task scheduler

2002-10-28 Thread Sylvain.Thevoz
have to provide a way to call an URL. Any suggestions or experiences? Thank you Sylvain -Message d'origine- De: Robert Ellis Parrott [mailto:parrott;fas.harvard.edu] Date: lundi, 28. octobre 2002 14:34 À: [EMAIL PROTECTED] Objet: Re: Cocoon task scheduler How about cron and a python

RE: Cocoon task scheduler

2002-10-28 Thread Artur Bialecki
Try Jcrontab http://jcrontab.sourceforge.net/index.shtml Artur... -Original Message- From: [EMAIL PROTECTED] [mailto:Sylvain.Thevoz;swisscom.com] Sent: October 28, 2002 8:47 AM To: [EMAIL PROTECTED] Subject: RE: Cocoon task scheduler I completely agree with you

RE: Cocoon task scheduler

2002-10-28 Thread Robert Ellis Parrott
;fas.harvard.edu] Date: lundi, 28. octobre 2002 14:34 À: [EMAIL PROTECTED] Objet: Re: Cocoon task scheduler How about cron and a python script, which executes a localhost HTTP query? Python has very good support for HTTP. I'm not convinced that Cocoon needs such a beast, when so much