Re: Request parameters getting lost

2004-04-13 Thread David Rees
Frank W. Zammetti wrote, On 4/12/2004 4:50 PM: So, my question is twofold... One, has anyone ever seen such an issue as missing parameters before, and if so, what information can you share with me about it? Two, am I off my rocker to think that connector config is way out of wack, and assuming it

RE: Request parameters getting lost

2004-04-13 Thread Shapira, Yoav
Hi, Whatever the root cause of this issue is, your servlets should be tolerant of these parameters not being specified, i.e. being null. You should never NPE in your own code due to improper input parameter checking. Yoav Shapira Millennium Research Informatics -Original Message-

RE: Request parameters getting lost

2004-04-13 Thread Allistair Crossley
Subject: RE: Request parameters getting lost Hi, Whatever the root cause of this issue is, your servlets should be tolerant of these parameters not being specified, i.e. being null. You should never NPE in your own code due to improper input parameter checking. Yoav Shapira Millennium Research

Re: Request parameters getting lost

2004-04-13 Thread David Rees
David Rees wrote: Let me guess, you're using SSL, have keep-alive enabled, and are using MSIE with all the latest patches. Right? Turns out a patch released by MS around Feb 4 (KB832894) which causes MSIE to lose request parameters if the KeepAlive session expires, in other words, when the

RE: Request parameters getting lost

2004-04-12 Thread Daniel Huang
You mentioned you have javascript to enforce user to enter values. Have you considered the possibility that user has disabled javascript from browser? That way they will be able to submit a null value to the server. Regards, Daniel -Original Message- From: Frank W. Zammetti

Re: Request parameters getting lost

2004-04-12 Thread QM
On Mon, Apr 12, 2004 at 07:50:55PM -0400, Frank W. Zammetti wrote: : So, my question is twofold... One, has anyone ever seen such an issue as : missing parameters before, and if so, what information can you share with me : about it? Two, am I off my rocker to think that connector config is way

Re: Request Parameters Getting Lost

2000-11-10 Thread Stefan Woithe
Hi Jason, I use Tomcat 3.1final and in an JSP the implicit object "request". If you know the name of the parameter use request.getParameter(name). Where is the method "getRequestParameters()" located -- for sure not in javax.servlet.ServletRequest? Regards Stefan "Voegele, Jason" wrote:

RE: Request Parameters Getting Lost

2000-11-10 Thread Keith McNeill
Title: RE: Request Parameters Getting Lost We've had the same problem dealing with wireless apps WAP gateways. Our theory is that the request params are being sent in UTF-8 not ascii and Tomcat can't deal with it. We do not have any problems when using JRun or Websphere. Keith McNeill

RE: Request Parameters Getting Lost

2000-11-10 Thread Voegele, Jason
Title: RE: Request Parameters Getting Lost Thanks for the pointer. We're accessing the JSP with IE 5.5, which has an option to send URLs as UTF-8. I turned this option off, but alas the request parameters are still not there. Any further advice? Thanks, Jason Voegele -Original