I have a server with the following configuration: Apache 2.4.29 (64bits) + mod_jk 1.2.42 + Tomcat 7.0.82 (with a struts application)
The problem is that although the connection between the Apache and the Tomcat works well, when submitting a form, the data does not reach the Tomcat server.
The struts application returns error of required fields .
It is as if the POST request did not carry the values of the form.
The rest of the web application works perfectly, and the logs do not show any warning or any error.
And if I stop the Apache and directly access the Tomcat, everything works fine. Any ideas?
link
<IfModule jk_module>
JkWorkersFile "E:\platj2ee\Apache24\conf\workers.properties"
JkLogFile "E:\platafj2ee\Apache24\logs\mod_jk.log"
JkLogLevel debug
JkOptions +ForwardSSLCertChain
</IfModule>
JkMount /* rrr
workers.properties:
worker.list=rrr
worker.cta.port=8009
worker.cta.host=localhost
worker.cta.type=ajp13
server.xml:
<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector port="8009"
enableLookups="false" redirectPort="8443" protocol="AJP/1.3" connectionTimeout="60000"
maxPostSize="0" URIEncoding="UTF-8"/>