-
1. Re: Jboss as7 org.apache.tomcat.util.http.Parameters.MAX_COUNT defaults to 512
r.reimann Jan 26, 2012 2:04 PM (in response to danjel)I ran into the same problem today and changing the default by setting the system property inside standalone.xml worked for me. See https://docs.jboss.org/author/display/AS71/Admin+Guide#AdminGuide-Adding%2CreadingandremovingsystempropertyusingCLI for examples.
Setting the property via JAVA_OPTS should have worked too.
-
2. Re: Jboss as7 org.apache.tomcat.util.http.Parameters.MAX_COUNT defaults to 512
diogocarleto Jan 26, 2012 3:25 PM (in response to danjel)Hello Danjel
In standalone.xml add the following lines
<system-properties>
<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="5000"/>
</system-properties>
This works for me.
-
3. Re: Jboss as7 org.apache.tomcat.util.http.Parameters.MAX_COUNT defaults to 512
danjel Jan 27, 2012 2:44 AM (in response to danjel)Thank you kindly, the suggested solution works!
Acctually setting the system property in standalone.bat. worked as well, but somehow, when i first tested it, it didn't.
Have a nice weekend everyone!
/Danjel
-
4. Re: Jboss as7 org.apache.tomcat.util.http.Parameters.MAX_COUNT defaults to 512
purplahaze Dec 12, 2012 10:25 AM (in response to diogocarleto)Hi *,
is there some setting for ajp protocoll as well?
Cause I have a problem with sending of a big post form with more than 1300 params
and it works well if I do it directly to our jboss server - HTTP Protocol.
Wenn I send the same request to Apache -> AJP -> jboss then I get an Exception.
My jboss is configured with property:
<system-properties>
<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="5000"/>
</system-properties>
but I can not find any ajp analoge.
Regards
Roman
-
5. Re: Jboss as7 org.apache.tomcat.util.http.Parameters.MAX_COUNT defaults to 512
yuvraj.patel Nov 18, 2014 6:35 AM (in response to purplahaze)Do we have any such thing on the Jboss eap 5? or what is the default limit on the jboss 5 ?
Thanks