Re: wget and Tomcat resources

2012-06-14 Thread Miguel Gonzalez
- Mensaje original - De: Darryl Lewis darryl.le...@unsw.edu.au Para: Tomcat Users List users@tomcat.apache.org CC: Enviado: Jueves 14 de junio de 2012 2:51 Asunto: RE: wget and Tomcat resources Have a look on the box running the script to see if there are a lot of these wget jobs

RE: wget and Tomcat resources

2012-06-14 Thread Darryl Lewis
:06 PM To: Tomcat Users List Subject: Re: wget and Tomcat resources - Mensaje original - De: Darryl Lewis darryl.le...@unsw.edu.au Para: Tomcat Users List users@tomcat.apache.org CC: Enviado: Jueves 14 de junio de 2012 2:51 Asunto: RE: wget and Tomcat resources Have a look

Re: wget and Tomcat resources

2012-06-14 Thread Miguel Gonzalez
- Mensaje original - De: Darryl Lewis darryl.le...@unsw.edu.au Para: Tomcat Users List users@tomcat.apache.org; Miguel Gonzalez miguel_3_gonza...@yahoo.es CC: Enviado: Jueves 14 de junio de 2012 9:40 Asunto: RE: wget and Tomcat resources Depending on what OS you are using, if you

Re: wget and Tomcat resources

2012-06-14 Thread Konstantin Kolinko
2012/6/14 Miguel González Castaños miguel_3_gonza...@yahoo.es: Dear all,  Our developer has set a cronjob similar to this:  wget -T 0 http://ourserver.com/email_sender  which calls a javabean to check pending emails to send in a database and actually send them.  I'm concerned about this,

RE: wget and Tomcat resources

2012-06-13 Thread Darryl Lewis
The -T 0 options limits disables the timeout, so it will hold the connection open until it gets a response. Personally, I'd remove it as if the 'ourserver' fails to respond (busy, network issues, solar flares), that wget job will sit on the calling server forever. The default is 900 seconds,