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 regards

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 DJohnson
en. I apologize for top-response etiquette violation: stuck with Lotus Notes client. Please respond to "Tomcat Users List" To: "Tomcat Users List" cc: Subject:RE: request.getParameter is returning the wrong value I've never seen that either and I

RE: request.getParameter is returning the wrong value

2007-05-08 Thread Propes, Barry L
CTED] Sent: Tuesday, May 08, 2007 8:33 AM To: users@tomcat.apache.org Subject: request.getParameter is returning the wrong value My web application generates a list of links for a user to click on. The URL looks like this: showCa.jsp?id=2345 The showCa.jsp page uses the id to populate a form o

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Jason Polites
ers > > >> > > login. > > >> > > > > >> > > I pass these values the JSP page when the following JavaScript > > >> executes: > > >> > > > > >> > > top.location.href="showCa.jsp?editFlag=" + &

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Jason Polites
;> > > document.theForm.activeTab.value + "&id=" + vId; > >> > > > >> > > > >> > > On 5/8/07, Martin Gainty <[EMAIL PROTECTED]> wrote: > >> > > > you are calling js function named 'showCa' > >> >

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 request.getP

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
named 'showCa' >> > > > but your javascript function name is 'showCap' >> > > > When/Where do you actually pass these values to servlet? >> > > > >> > > > M-- >> > > > This email message and any files tran

Re: request.getParameter is returning the wrong value

2007-05-08 Thread David Delbecq
+ "&id=" + vId; >> > > >> > > >> > > On 5/8/07, Martin Gainty <[EMAIL PROTECTED]> wrote: >> > > > you are calling js function named 'showCa' >> > > > but your javascript function name is 'showCap' >> > &

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
whom this email message > > is > > > addressed. If you have received this email message in error, please > > notify > > > the sender immediately by telephone or email and destroy the original > > > message without making a copy. Thank you. > &g

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
; the sender immediately by telephone or email and destroy the original > > message without making a copy. Thank you. > > > > - Original Message - > > From: "Richard Sayre" <[EMAIL PROTECTED]> > > To: "Tomcat Users List" > > Sent

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Jason Polites
please notify > the sender immediately by telephone or email and destroy the original > message without making a copy. Thank you. > > - Original Message - > From: "Richard Sayre" <[EMAIL PROTECTED]> > To: "Tomcat Users List" > Sent: Tuesday,

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
email message in error, please notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: "Richard Sayre" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Tuesday, May 08, 2007 9:55

Re: request.getParameter is returning the wrong value

2007-05-08 Thread Martin Gainty
]> To: "Tomcat Users List" 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 ret

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.getP

RE: request.getParameter is returning the wrong value

2007-05-08 Thread Caldarale, Charles R
> 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! This is usu

request.getParameter is returning the wrong value

2007-05-08 Thread Richard Sayre
My web application generates a list of links for a user to click on. The URL looks like this: showCa.jsp?id=2345 The showCa.jsp page uses the id to populate a form on the page. The problem I am have is when a user clicks the link showCa.jsp?id=2345 The request.getParameter("id") is returning