Kaur, Jasdeep Guglani wrote:
even implementing the VelocityViewServlet has not solved my problem.

My class VMServlet which handles all vm requests is being extended from
VelocityViewServlet. still only one instance of the VM Servlet is created in
the memory to handle the requests even if they come from different session
ids...

Servlets are singletons by design. It's their life cycle. You should store request-dependent data in the request and session-dependent data in the session (see HttpSession.setAttribute()). Velocity is not involved here.

Bye, Thomas.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to