|
|
This post was updated on .
I need to give parameters than more 10000 data, so i increase the limit in framework/catalina/ofbiz-component.xml with :
<property name="maxParameterCount" value="100000"/>
And i restart and build the ofbiz again. But the error still occured. Thanks
Edit:
The Problem is solved. I add this to catalinacontainer.java in method createConnector
connector.setMaxParameterCount(1000000);
|