Line 588 of org.apache.axis.transport.http.AxisServlet (res.flushBuffer()) is causing an exception to be thrown for each SOAP request when using Weblogic. It would be a great help if you could change
From:
res.flushBuffer(); //Force it right now
To:
if(!res.isCommitted())
{
res.flushBuffer();
}
To prevent an exception from being thrown when the response has already
been comitted.
Thanks,
David Cole
