Usage of Servlet
Hi,
I have one doubt about Servlet. As you all know servlet provides us with init, service, (doGet or doPost in case of HTTP servlet) & destroy methods.
I am using quartz schedular to schedule the batch jobs. The quartz schedular provides us with interface called Job and we need to implement run method of this Job interface.
My question is can I have my servlet implementing this Job interface? Will it be ok to do that?
Thanks & Regards
Ashwin

