RE: cannot read complete HTTP request body. It reads only 8192 characters

2011-10-30 Thread Anantaneni Harish
String keyValuePair = null; String[] arrKeyValue = null; BufferedReader in = request.getReader(); while ((keyValuePair = in.readLine()) != null) { arrKeyValue = keyValuePair.split(=); Above code reads incomplete data(read only 8192 bytes) at my customer's environment, but reads complete data in

Re: Rollback in Tomcat7 under parallel deployment

2011-10-30 Thread Ellecer Valencia
Hi Chris, But how would it cause an outage? ROOT##003 would not necessarily be copied from the file ROOT##001.war It'll be a separate deployment, but just using the same build that got deployed as ROOT##001. Whether ROOT##001 is marked for undeployment should not make a difference to ROOT##003.

RE: Rollback in Tomcat7 under parallel deployment

2011-10-30 Thread Caldarale, Charles R
From: Ellecer Valencia [mailto:elle...@gmail.com] Subject: Re: Rollback in Tomcat7 under parallel deployment But how would it cause an outage? ROOT##003 would not necessarily be copied from the file ROOT##001.war I believe Chris was referring to your originally stated tactic of just

Re: Rollback in Tomcat7 under parallel deployment

2011-10-30 Thread Ellecer Valencia
Ah yes. Thanks Chuck. That makes more sense. =) On Mon, Oct 31, 2011 at 3:04 PM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Ellecer Valencia [mailto:elle...@gmail.com] Subject: Re: Rollback in Tomcat7 under parallel deployment But how would it cause an outage? ROOT##003

Re: context.xml not being read

2011-10-30 Thread jilen
On 10/29/2011 04:48 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jilen, On 10/27/2011 9:06 PM, jilen wrote: This is the question i've asked before in org.apache.catalina.startup.HostConfig.deployWAR(ContextName, File, String) i found some code like these