Resolution | 1. Open the server.xml file. 2. On line 87, find the following text:
{code} <!-- Define a non-SSL HTTP/1.1 Connector on port 8080--> <!--Http-Connector-starts.DO NOT DELETE, MOVE THIS COMMENT. Do not add new line after this line --> <!-- <Connector port="${envision.http.port}" maxHttpHeaderSize="8192" protocol="HTTP/1.1" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="${envision.https.port}" acceptCount="100" server=" " connectionTimeout="20000" disableUploadTimeout="true" maxPostSize="${envision.http.maxPostSize}" /> --> <!-- Http-Connector-ends. DO NOT DELETE, MOVE THIS COMMENT. Do not add new line before this line --> <!-- Note : To disable connection timeouts, set connectionTimeout value to 0 --> {code}
3. Change this text to:
{code} <!-- Define a non-SSL HTTP/1.1 Connector on port 8080--> <!--Http-Connector-starts.DO NOT DELETE, MOVE THIS COMMENT. Do not add new line after this line --> <!-- <Connector port="${envision.http.port}" maxHttpHeaderSize="8192" protocol="HTTP/1.1" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="${envision.https.port}" acceptCount="100" server=" " connectionTimeout="20000" disableUploadTimeout="true" maxPostSize="${envision.http.maxPostSize}" /> --> <!-- Http-Connector-ends. DO NOT DELETE, MOVE THIS COMMENT. Do not add new line before this line --> <!-- Note : To disable connection timeouts, set connectionTimeout value to 0 --> {code}
|