Hi,
I have a production server running axis2 service and I get "INFO Old
Servlet API :java.lang.StackOverflowError" in the log file.
I checked the code a bit a found in AxisServlet:
//set the initial buffer for a larger value
try {
response.setBufferSize(BUFFER_SIZE);
} catch (Throwable t){
log.info("Old Servlet API :" + t);
}Should I be worried about this or is this "normal"? Can someone explain why response.setBufferSize could throw a StackOverflow? Thank you very much! Manuel
