Re: [OT/RANT] Quartz

2007-09-10 Thread Ben Souther
Hehe.

It's amazing what you can do with one line of code using cron and wget.





On Thu, 2007-09-06 at 17:43, Christopher Schultz wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Doesn't anyone know how to use cron anymore?
 
 Sheesh...
 
 - -chris
 
 Andrew Hole wrote:
  I can't find an example of using Quartz to scheduling jobs on Tomcat Web
  application.
  Someone already work with Quartz? Could you share a hello world sample?
  
  Thanks a lot
  
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.7 (MingW32)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
 iD8DBQFG4HR59CaO5/Lv0PARAvxYAJ48g3JyLuF23xhnS5lp3OKNg7An7gCgruKm
 hiiwHPYjs27HigRvF+03Hw4=
 =Z0pm
 -END PGP SIGNATURE-
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT/RANT] Quartz

2007-09-10 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ben,

Ben Souther wrote:
 Hehe.
 
 It's amazing what you can do with one line of code using cron and wget.

For real.

I've never found an application where it makes sense to have a scheduled
job run inside the webapp.

I realize that lots of folks don't have direct access to their own
production servers (basically WAR drop-offs), but when you start to need
your own scheduled jobs, it's time to grow up and admin your own boxes.

- -chris
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG5X879CaO5/Lv0PARApy0AJ9YRW2HFuenZKxK8mYWeSAWRjfPdwCeNrRJ
0v54aZRuxgzhZL7dtJGnYNQ=
=Wvvi
-END PGP SIGNATURE-

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT/RANT] Quartz

2007-09-10 Thread Wade Chandler
Well, I have a couple of web applications which suck
up a thread for such things as well. I do it so that I
can schedule processes through this single application
and the end people do not need anything else, and also
because if they had to admin their own servers in
these instances it would just look bad on me as the
scheduled processes need to be configured by simple
end users who don't know anything about the server. I
guess it really depends on the usages, and these
applications run on Windows or *nix. I don't use
Quartz, but instead just some custom classes.

Wade

--- Christopher Schultz [EMAIL PROTECTED]
wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Ben,
 
 Ben Souther wrote:
  Hehe.
  
  It's amazing what you can do with one line of code
 using cron and wget.
 
 For real.
 
 I've never found an application where it makes sense
 to have a scheduled
 job run inside the webapp.
 
 I realize that lots of folks don't have direct
 access to their own
 production servers (basically WAR drop-offs), but
 when you start to need
 your own scheduled jobs, it's time to grow up and
 admin your own boxes.
 
 - -chris
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.7 (MingW32)
 Comment: Using GnuPG with Mozilla -
 http://enigmail.mozdev.org
 

iD8DBQFG5X879CaO5/Lv0PARApy0AJ9YRW2HFuenZKxK8mYWeSAWRjfPdwCeNrRJ
 0v54aZRuxgzhZL7dtJGnYNQ=
 =Wvvi
 -END PGP SIGNATURE-
 

-
 To start a new topic, e-mail:
 users@tomcat.apache.org
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 
 


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT/RANT] Quartz

2007-09-10 Thread David kerber
I've had good luck creating timed events with java.util.Timer and 
java.util.TimerTask.  No external libs needed...


D


Ben Souther wrote:

Hehe.

It's amazing what you can do with one line of code using cron and wget.





On Thu, 2007-09-06 at 17:43, Christopher Schultz wrote:
  

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Doesn't anyone know how to use cron anymore?

Sheesh...

- -chris

Andrew Hole wrote:


I can't find an example of using Quartz to scheduling jobs on Tomcat Web
application.
Someone already work with Quartz? Could you share a hello world sample?

Thanks a lot

  

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG4HR59CaO5/Lv0PARAvxYAJ48g3JyLuF23xhnS5lp3OKNg7An7gCgruKm
hiiwHPYjs27HigRvF+03Hw4=
=Z0pm
-END PGP SIGNATURE-

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



  




-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT/RANT] Quartz

2007-09-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Doesn't anyone know how to use cron anymore?

Sheesh...

- -chris

Andrew Hole wrote:
 I can't find an example of using Quartz to scheduling jobs on Tomcat Web
 application.
 Someone already work with Quartz? Could you share a hello world sample?
 
 Thanks a lot
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG4HR59CaO5/Lv0PARAvxYAJ48g3JyLuF23xhnS5lp3OKNg7An7gCgruKm
hiiwHPYjs27HigRvF+03Hw4=
=Z0pm
-END PGP SIGNATURE-

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]