Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there any place where I can tell the container to accept lots of data?
In one of my web service, data around 1-2MB is consumed easily. However, when I sent data around 8MB, it was unable to process the data.
I was searching and it looks like jetty is having a max limit on the post data. It can be changed by modifying the jetty-web.xml??
http://www.eclipse.org/jetty/documentation/current/setting-form-size.html
Any direction for setting the Karaf Jetty to accept a bigger amount of data?
Thank you.
Which message do you get from the job? Because when I had a problem with bigger files it was down to the memory allocated to the job. Did a translation in the job which costed a lot of memory, the webservice components where able to handle much bigger files without issues.
Hi,
What I did was adding a Tlogcather combined with a tXMLmap to generate a Document to send with the 500 error. In normal cases you don't need a body with a 500 but you can send (tRestResponse) it so I used the map to add information to help me with the debugging.