RES: How can I automatically start a servlet in a specific time?

2002-04-11 Thread Edson Carlos Ericksson Richter
original- De: Kelly Prudente Pereira [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 10 de abril de 2002 19:20 Para: 'Tomcat Users List' Assunto: RES: How can I automatically start a servlet in a specific time? Yes Ken, I mean I don't want to load it until a specific time. I need to load

Re: RES: How can I automatically start a servlet in a specific time?

2002-04-11 Thread Marcelo Mathias Lima
I automatically start a servlet in a specific time? Yes Ken, I mean I don't want to load it until a specific time. I need to load it to do a specific job at a certain time. Do you know how can I do this? -Mensagem original- De: Ken Anderson [mailto:[EMAIL PROTECTED]] Enviada em: quarta

RES: How can I automatically start a servlet in a specific time?

2002-04-10 Thread Kelly Prudente Pereira
Não sei bem se entendi. Eu uso o load-on-startup para carregar uma servlet e esta fica responsável por chamar outra num determinado horário? Já fez isso? Obrigada por responder. -Mensagem original- De: Carlos Martins [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 10 de abril de

RES: How can I automatically start a servlet in a specific time?

2002-04-10 Thread Kelly Prudente Pereira
Yes Ken, I mean I don't want to load it until a specific time. I need to load it to do a specific job at a certain time. Do you know how can I do this? -Mensagem original- De: Ken Anderson [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 10 de abril de 2002 19:19 Para: Tomcat Users

Re: RES: How can I automatically start a servlet in a specific time?

2002-04-10 Thread Ken Anderson
This sounds like it could be a simple java app? Are you sure this needs to be a servlet? If so, I suppose the easiest is just to write a controller servlet for it that only executes the method when the time is right, and sleeps the rest of the time.. Someone else suggested some code for this.

Re: RES: How can I automatically start a servlet in a specific time?

2002-04-10 Thread Christopher K. St. John
Kelly Prudente Pereira wrote: Yes Ken, I mean I don't want to load it until a specific time. I need to load it to do a specific job at a certain time. Do you know how can I do this? That's not really what servlets are for. If you do decide to do it using a servlet, you should know the