Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
On 5/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Richard Sayre [mailto:[EMAIL PROTECTED] Subject: request.getParameter is returning the wrong value The problem I am have is when a user clicks the link showCa.jsp?id=2345 The request.getParameter(id) is returning the wrong id!

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Martin Gainty
@tomcat.apache.org Sent: Tuesday, May 08, 2007 9:55 AM Subject: Re: request.getParameter is returning the wrong value On 5/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Richard Sayre [mailto:[EMAIL PROTECTED] Subject: request.getParameter is returning the wrong value The problem I am have

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
or email and destroy the original message without making a copy. Thank you. - Original Message - From: Richard Sayre [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, May 08, 2007 9:55 AM Subject: Re: request.getParameter is returning the wrong value On 5/8/07

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Jason Polites
PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, May 08, 2007 9:55 AM Subject: Re: request.getParameter is returning the wrong value On 5/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Richard Sayre [mailto:[EMAIL PROTECTED] Subject: request.getParameter

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
is returning the wrong value On 5/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Richard Sayre [mailto:[EMAIL PROTECTED] Subject: request.getParameter is returning the wrong value The problem I am have is when a user clicks the link showCa.jsp?id=2345

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
message without making a copy. Thank you. - Original Message - From: Richard Sayre [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, May 08, 2007 9:55 AM Subject: Re: request.getParameter is returning the wrong value On 5/8/07

Re: request.getParameter is returning the wrong value

2007-05-08 Thread David Delbecq
. - Original Message - From: Richard Sayre [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, May 08, 2007 9:55 AM Subject: Re: request.getParameter is returning the wrong value On 5/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
and destroy the original message without making a copy. Thank you. - Original Message - From: Richard Sayre [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, May 08, 2007 9:55 AM Subject: Re: request.getParameter is returning the wrong

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Richard, Richard Sayre wrote: I started to look in the _jspService and I noticed the the variable which I assign the request.getParameter(id) to is not in that method. Note that JSP authors these days almost never actually call

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Jason Polites
] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, May 08, 2007 9:55 AM Subject: Re: request.getParameter is returning the wrong value On 5/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Richard Sayre [mailto:[EMAIL PROTECTED

RE: request.getParameter is returning the wrong value

2007-05-08 Thread Propes, Barry L
I've never seen that either and I use the same environment you do. Seems as if users' sessions are somehow crossing/getting overlapped, but not sure how. Are you using some lookup for an id? Like SSO or something? -Original Message- From: Richard Sayre [mailto:[EMAIL PROTECTED] Sent:

RE: request.getParameter is returning the wrong value

2007-05-08 Thread DJohnson
for top-response etiquette violation: stuck with Lotus Notes client. Please respond to Tomcat Users List users@tomcat.apache.org To: Tomcat Users List users@tomcat.apache.org cc: Subject:RE: request.getParameter is returning the wrong value I've never seen that either and I use

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
On 5/8/07, Christopher Schultz [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Richard, Richard Sayre wrote: I started to look in the _jspService and I noticed the the variable which I assign the request.getParameter(id) to is not in that method. Note that JSP

RE: request.getParameter is returning the wrong value

2007-05-08 Thread James McIntosh
Try printing out the URL / URI + query string and printing a loop of all request parameters to see what you are actually posing and if the request is still the correct one. The next thing to check would be whether you request is redirected / forwarded as this can have cause problems. Kind