How to Schedule Poller(Servlet)
Hi All,I have a servlet that servlet does offline process some data at EOD.So i need that servlet to run at EOD ( i mean at morning 1 AM) and stop after 1 hrs work then again start tomrrow morning 1 AM .Can i know how to schedule Regards
Servlet cant do this. 1. You need to write a standalone Java program to initiate the process.2. Cron / Scheduled job to run it at a specified time. If you are using Unix, use Cron, if Windows use Scheduled JobThanks and regards,Pazhanikanthan. P