org.apache.catalina.util.ParameterMap.put exception

2005-07-14 Thread cristi
Hello all I receive the following exception in a non deterministic manner. The reader should understand that the exception is not thrown due to my direct action on a ParameterMap instance. Is there any possibility of knowing what to do in this case ? - BEGIN EXCEPTION - HTTP Status 500

Re: org.apache.catalina.util.ParameterMap.put exception

2005-07-14 Thread Foo Shyn
- Original Message - From: cristi [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, July 14, 2005 5:01 PM Subject: org.apache.catalina.util.ParameterMap.put exception Hello all I receive the following exception in a non deterministic manner

Re: org.apache.catalina.util.ParameterMap.put exception

2005-07-14 Thread cristi
Are u trying to redirect the user to another page from Hello?? Probably u can try using response.sendRedirect instead to redirect the user? Yes. Hello is a servlet. The last action in my servlet is to call RequestDispatcher.forward() to a jsp which is creating the HTML page. Do you have