Re: Missing Request Parameters

2006-08-21 Thread Nicolas Schwartz
Yes I sent them 2 posts ago. However, here they are again : In our server.xml: ## In our workers.properties: workers.apache_log=/usr/local/apache/logs workers.tomcat_home=/usr/local/tomcat workers.java_home=/usr/local/java ps=/ worker.list=ajp13 worker.ajp13.type

Re: Missing Request Parameters

2006-08-18 Thread Pid
have we seen your connector config, and your apache forwarding setup (JK i assume)? Nicolas Schwartz wrote: As I said it happens even on GET requests and very small urls on our side. Since it is a get request, we do see the parameter in the apache log, but we can't get it with the getParame

Re: Missing Request Parameters

2006-08-18 Thread Nicolas Schwartz
As I said it happens even on GET requests and very small urls on our side. Since it is a get request, we do see the parameter in the apache log, but we can't get it with the getParameter() method. The parameter is lost somewhere between the connector and tomcat I think. Nicolas Yashwanth CP a

Re: Missing Request Parameters

2006-08-18 Thread Yashwanth CP
Hi, We are facing a similar issue ( missing parameters intermittently ). Our setup has relatively huge post requests , ( < 4KB) , and about 100-200 parallel connections on a tomcat that has 512MB memory.Some of the parameters just become null randomly. Our guess is ,it is related to size of post r

Re: Missing Request Parameters

2006-08-18 Thread Nicolas Schwartz
Hi ! Here is the configuration we have: In our server.xml: ## In our workers.properties: #parametrage de mod_jk workers.apache_log=/usr/local/apache/logs workers.tomcat_home=/usr/local/tomcat workers.java_home=/usr/local/java ps=/ worker.list=ajp13 worker.ajp13

Re: Missing Request Parameters

2006-08-17 Thread lmelendez
ajp13:localhost:8009 I'll do some research on how to change the connector and test it to see if there is a change. Leo. -- View this message in context: http://www.nabble.com/Missing-Request-Parameters-tf2018230.html#a5855923 Sent from the Tomcat - User forum at Nabbl

Re: Missing Request Parameters

2006-08-17 Thread lmelendez
Tomcat and found the following lines: All the other connectors are commented out. When you ask what connector am I using, where can I find that out? Thanks! Leo. -- View this message in context: http://www.nabble.com/Missing-Request-Parameters-tf2018230.html#a5855584 Sent from the To

Re: Missing Request Parameters

2006-08-17 Thread Nicolas Schwartz
I thought it might come from the connector ... Did you already try to change it ? Which version are you using ? Nicolas lmelendez a écrit : Nicolas Schwartz wrote: It occurs on GET requests, maybe on POST ones but we don't know. The value of the parameter is not long, neither is the value. It

Re: Missing Request Parameters

2006-08-16 Thread lmelendez
we started seeing the problem only about a month ago. We checked all changes we did to the product and none of them seem to be causing the issue. Thanks for the help! Leo. -- View this message in context: http://www.nabble.com/Missing-Request-Parameters-tf2018230.html#a5835672 Sent from th

Re: Missing Request Parameters

2006-08-16 Thread Lou Caudell
rache wrote: Parameter values are set in the jsp either as hardcoded links(http://j.jsp?param=value) or as hidden parameters. When the program enters the doGet() or doPost() method of a servlet and check for the parameter, its null. String pvalue = req.getParameter("param"); This happens interm

Re: Missing Request Parameters

2006-08-16 Thread Nicolas Schwartz
Hi, We are facing the same problem. Sometimes the parameters don't get to tomcat. We've seen this by monitoring our plateform through a servlet simply returning the value of a parameter. We are also using apache+tomcat apache-2.0.54 jakarta-tomcat-5.5.9 It occurs on GET requests, maybe on POS

Re: Missing Request Parameters

2006-08-16 Thread Pid
(i can't see a previous thread for this, new mail setup, so apologies if I'm restating.) Are you using GET or POST? And how many parameters are you submitting? And are there any particularly long bits of data in the parameters? lmelendez wrote: Hi Rache, Well, we are seeing the problem. Ou

Re: Missing Request Parameters

2006-08-15 Thread lmelendez
ssage in context: http://www.nabble.com/Missing-Request-Parameters-tf2018230.html#a5818175 Sent from the Tomcat - User forum at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [

Re: Missing Request Parameters

2006-07-31 Thread rache
Where, aside from html forms, can these methods be set? Thanks again! -- View this message in context: http://www.nabble.com/Missing-Request-Parameters-tf2018230.html#a5580175 Sent from the Tomcat - User forum at Nabble.com. -

Re: Missing Request Parameters

2006-07-31 Thread Jon Wingfield
Erm. ok. Where does the redirectURL variable come from? Unless it has parameters encoded into it that will be your problem. Also, be a bit wary in using the RequestDumperValve with non-ascii charset data as it can corrupt some parameters: http://marc.theaimsgroup.com/?l=tomcat-user&m=112530311

Re: Missing Request Parameters

2006-07-31 Thread rache
em checking the urls with parameters set since this happens in production and happens on and off. I can't even see the page source to check on the url set since the pages aren't cached. Any tips on these? I'm really grateful for all your inputs! -- View this message in context: ht

Re: Missing Request Parameters

2006-07-29 Thread jon wingfield
Rache, Tools like ieHTTPHeaders and LiveHTTPHeaders will also help you determine what the browser actually sends to the server, including any redirects caused by 302 response codes. HTH, Jon > Rache, > >> But this usually occur after redirects. > > This is what I was going to ask about: if you

Re: Missing Request Parameters

2006-07-29 Thread Christopher Schultz
Rache, > But this usually occur after redirects. This is what I was going to ask about: if you fail to put all the important parameters into the redirect, then you will lose them. For example, if you have a form handler that accepts 5 request parameters, you cannot simply say: response.sendRedir

Re: Missing Request Parameters

2006-07-29 Thread Martin Gainty
t;Ben Souther" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, July 28, 2006 9:21 PM Subject: Re: Missing Request Parameters > Since all webapps rely on request parameters, I'd say this would be a > huge bug if it were one. So huge that it would render

Re: Missing Request Parameters

2006-07-28 Thread rache
context: http://www.nabble.com/Missing-Request-Parameters-tf2018230.html#a5550753 Sent from the Tomcat - User forum at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Missing Request Parameters

2006-07-28 Thread Ben Souther
Since all webapps rely on request parameters, I'd say this would be a huge bug if it were one. So huge that it would render Tomcat unusable for any commercial grade application. Such a bug would fill this list with hundreds or thousands of complaints. Since we're not seeing those complaints, it'

Missing Request Parameters

2006-07-28 Thread rache
tently. Is there any explanation on this. Is this a bug on Tomcat or somethings wrong with my code? Any help would be great! Thanks! -- View this message in context: http://www.nabble.com/Missing-Request-Parameters-tf2018230.html#a5549353 Sent from the Tomcat - User forum at