dims        02/02/21 12:50:27

  Modified:    java/src/org/apache/axis/transport/http AxisServlet.java
  Log:
  Patch from "David L. Cole" <[EMAIL PROTECTED]>" for exceptions in Weblogic.
  
  Revision  Changes    Path
  1.83      +3 -1      
xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java
  
  Index: AxisServlet.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- AxisServlet.java  19 Feb 2002 17:38:22 -0000      1.82
  +++ AxisServlet.java  21 Feb 2002 20:50:27 -0000      1.83
  @@ -584,7 +584,9 @@
             if(isDebug) log.debug("Returned Content-Length:" + respContentlength);
             msg.writeContentToStream(res.getOutputStream());
           }
  -        res.flushBuffer(); //Force it right now.
  +        if(!res.isCommitted()) {
  +            res.flushBuffer(); //Force it right now.
  +        }
           if(isDebug) log.debug("Response sent.");
       }
   }
  
  
  


Reply via email to