I have one servlet that make a SQL query and as result build a HTML table to display in user�s browser, i�d like to create a report servlet to use servlets like my query-servlet to print ( in our project report-servlets are a little different from our query-servlets ). Then i created this report-servlet and i was willing to use query-servlet�s methods to reuse its features. To solve that problem i implemented a static method in query-servlet to enable report-servlet to use query-servlet�s ResultSet, basically a build a static method to make two servlets share the same functionalities, is this right?
> ---------- > De: Shapira, Yoav[SMTP:[EMAIL PROTECTED] > Responder: Tomcat Users List > Enviada: segunda-feira, 1 de mar�o de 2004 11:08 > Para: Tomcat Users List > Assunto: RE: how can i get a servlet instance from ServletPool > > > Howdy, > > > Hello dudes, is there a way to get a servlet instance from Tomcat�s > >pool? Is there a replacement to getServletContext( ).getServlet( > )? > > As always, there's a way. But is it portable/reliable/advisable? No, no, > and no. Was there a reason getServlet was deprecated? Sure. > > Why do you want to do this? > > Yoav Shapira > > > > This e-mail, including any attachments, is a confidential business > communication, and may contain information that is confidential, > proprietary and/or privileged. This e-mail is intended only for the > individual(s) to whom it is addressed, and may not be saved, copied, > printed, disclosed or used by anyone else. If you are not the(an) > intended recipient, please immediately delete this e-mail from your > computer system and notify the sender. Thank you. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] >
