RE: Web application receives request parameters sent to another application on Tomcat 6

2007-05-30 Thread Reich, Matthias
t 6? > > If it is the APR connector (i.e. if you have the tcnative-1 > library in your library path), you could try if the problem > disappears when you switch to the Http11Protocol. > > > Matthias > > > > -Original Message- > > From: Dejan Krsmanov

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-29 Thread Filip Hanik - Dev Lists
What connector are you using? ie, how does the element look in server.xml? Filip Dejan Krsmanovic wrote: We have two applications running on the same Tomcat instance. These two applications are used by completely different people and one of them has much higher traffic than another one. Recen

RE: Web application receives request parameters sent to another application on Tomcat 6

2007-05-29 Thread Reich, Matthias
7 8:13 AM > To: Tomcat Users List > Subject: Re: Web application receives request parameters sent > to another application on Tomcat 6 > > I am aware of that. We are printing request parameters inside > Servlet's > doPost method. > > Dejan > > Len Popp wrote: &g

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Dejan Krsmanovic
I am aware of that. We are printing request parameters inside Servlet's doPost method. Dejan Len Popp wrote: > It is possible that Tomcat resuses request objects. I'm not sure it > does, but it might. For that reason, you're only allowed to use the > request object in your servlet's doGet or doPo

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Len Popp
It is possible that Tomcat resuses request objects. I'm not sure it does, but it might. For that reason, you're only allowed to use the request object in your servlet's doGet or doPost method, you can't stash it somewhere (e.g. in the HttpSession) and access it later. (This is mentioned in the ser

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Dejan Krsmanovic
Rashmi Rubdi wrote: > It is hard to tell what could be the problem without knowing full > details of how the 2 projects Host, Context etc are configured. > > Are they at the ROOT context, or other Context? No, they are on different contexts (not ROOT). > > Are they on a virtual host or all of them

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Rashmi Rubdi
On 5/28/07, Dejan Krsmanovic <[EMAIL PROTECTED]> wrote: We have two applications running on the same Tomcat instance. These two applications are used by completely different people and one of them has much higher traffic than another one. Recently we have upgraded to Tomcat 6.10 and start experie

Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Dejan Krsmanovic
We have two applications running on the same Tomcat instance. These two applications are used by completely different people and one of them has much higher traffic than another one. Recently we have upgraded to Tomcat 6.10 and start experiencing strange behavior. After a lot of debugging, we have