Invalid message received with signature 8192

Latest response

We are setting up SSL connection for a web application, we have apache2.2(httpd) and Jboss AS 7.1, we are using mod_cluster and mod_ssl.
its works for login and other initial pages , but its giving error when we post huge data, we can see the data being posted to apache in the ssl_error_log
but its not forwarding to JBOSS. in the JBOSS Its giving below error.

6:58:19,764 ERROR [org.apache.coyote.ajp.AjpMessage] (ajp--0.0.0.0-8009-7) Invalid message received with signature 8192
16:58:27,422 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/bvb-web].[auEngine]] (ajp--0.0.0.0-8009-10) Servlet.service() for servlet auEngine threw exception: java.lang.ArrayIndexOutOfBoundsException
at java.net.SocketInputStream.read(SocketInputStream.java:143) [rt.jar:1.7.0_51]
at java.net.SocketInputStream.read(SocketInputStream.java:122) [rt.jar:1.7.0_51]
at org.apache.coyote.ajp.AjpProcessor.read(AjpProcessor.java:1131) [jbossweb-7.0.13.Final.jar:]
we increased packetsize on jboss by
property name="org.apache.coyote.ajp.MAX_PACKET_SIZE" value="1073741824"

still getting error

Responses