Reputation: 37
when i try to restore client's Specific Table's into empty Database,it restore the table successfully.
but when i run the application and try to insert the form its shows this error in browser like this
and in Console it show this error
can anybody tell me for what is this error is showing,and why am i getting . i am using jvm version as 1.0.7 and my tomcat version is 6.0.32 .
thanks in advance
Upvotes: 0
Views: 77
Reputation: 17371
Try to increase maxHttpHeaderSize by setting it in server.xml
<!-- set maxHttpHeaderSize to 8kb -->
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
maxHttpHeaderSize="8192" />
http://tomcat.apache.org/tomcat-5.5-doc/config/http.html
Upvotes: 1