Re: Tomcat losing request parameters

2015-06-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ravi, On 6/9/15 1:48 PM, Ravi Kiran wrote: > Few things we tried: - Changed mod_jk to mod_proxy where requests > are passed to tomcat as http:8080 instead of AJP but we still get > the same issue intermittently. - Enabled failed request filter and >

Re: Tomcat losing request parameters

2015-06-09 Thread Ravi Kiran
Few things we tried: - Changed mod_jk to mod_proxy where requests are passed to tomcat as http:8080 instead of AJP but we still get the same issue intermittently. - Enabled failed request filter and it doesn't report anything nor stop the requests stating bad requests unfortunately, running out of

Re: Tomcat losing request parameters

2015-06-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Konstantin, On 6/9/15 5:04 AM, Konstantin Kolinko wrote: > 2015-06-04 18:40 GMT+03:00 Ravi Kiran : >> Hi, >> >> I am writing to get some pointers on a strange issue which are >> facing in tomcat in one of our client environments. >> >> Setup: 4 We

Re: Tomcat losing request parameters

2015-06-09 Thread Konstantin Kolinko
2015-06-04 18:40 GMT+03:00 Ravi Kiran : > Hi, > > I am writing to get some pointers on a strange issue which are facing in > tomcat in one of our client environments. > > Setup: 4 Webservers connecting to 2 tomcat using mod_jk (load balanced) > > Issue: Request parameters GET/POST are coming as nul

Re: Tomcat losing request parameters

2015-06-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ravi, On 6/4/15 10:44 PM, Ravi Kiran wrote: > All the parameters are lost when this issue occurs. > > Code in the filter: > > Map paramMap = httpRequest.getParameterMap(); > StringBuilder sb = new StringBuilder(); if(paramMap != null) { > sb.app

Re: Tomcat losing request parameters

2015-06-04 Thread Ravi Kiran
Christopher, All the parameters are lost when this issue occurs. Code in the filter: Map paramMap = httpRequest.getParameterMap(); StringBuilder sb = new StringBuilder(); if(paramMap != null) { sb.append(System.lineSeparator()); sb.append("Request URI: ").append(httpRequest.getRequestURI()); Enu

Re: Tomcat losing request parameters

2015-06-04 Thread Mark Thomas
On 04/06/2015 16:40, Ravi Kiran wrote: > Hi, > > I am writing to get some pointers on a strange issue which are facing in > tomcat in one of our client environments. > > Setup: 4 Webservers connecting to 2 tomcat using mod_jk (load balanced) > > Issue: Request parameters GET/POST are coming as n

Re: Tomcat losing request parameters

2015-06-04 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ravi, On 6/4/15 11:40 AM, Ravi Kiran wrote: > Hi, > > I am writing to get some pointers on a strange issue which are > facing in tomcat in one of our client environments. > > Setup: 4 Webservers connecting to 2 tomcat using mod_jk (load > balanced

Tomcat losing request parameters

2015-06-04 Thread Ravi Kiran
Hi, I am writing to get some pointers on a strange issue which are facing in tomcat in one of our client environments. Setup: 4 Webservers connecting to 2 tomcat using mod_jk (load balanced) Issue: Request parameters GET/POST are coming as null to the application intermittently i.e, filter in we