Pid * wrote:
> 
> doProcess(req, res) is not a Servlet API method. What other method(s)
> call it?
> 
> Usually this type of thing occurs because the request (or response) is
> being held as an instance field somewhere in a thread-unsafe way.
> 
> 

It is called from:
        public void doGet(HttpServletRequest request, HttpServletResponse 
response)
throws ServletException, IOException {
                doProcess(request, response);
        }

and doPost(...) as well. 

I am not quite sure where and what could be holding the request, as this
method is the called directly and request params are already NULL ?

-- 
View this message in context: 
http://old.nabble.com/Request-params-randomly-null-in-servlet%28s%29-tp32461421p32462485.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to