How can I access one servlet method from some other servlet in same context?
Created May 7, 2012
Bozidar Dangubic You do not call methods on the servlet from other servlets. If you need to perform some functionality in many servlets, put that functionality in some other object that you can create from both servlets. Servlets are request-response mechanism and not just regular java classes that you call methods on it.