dims        02/05/28 11:35:21

  Modified:    java/src/org/apache/axis/transport/http HTTPSender.java
  Log:
  SalesRankNPrice fails for a direct (non-proxy) connection if shutdownOutput is 
called.
  
  Revision  Changes    Path
  1.60      +3 -1      xml-axis/java/src/org/apache/axis/transport/http/HTTPSender.java
  
  Index: HTTPSender.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/transport/http/HTTPSender.java,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- HTTPSender.java   24 May 2002 12:53:18 -0000      1.59
  +++ HTTPSender.java   28 May 2002 18:35:21 -0000      1.60
  @@ -139,7 +139,9 @@
                   writeToSocket(sock, msgContext, tmpURL, otherHeaders, host,
                           useFullURL);
              }finally{
  -             if(null != sock) sock.shutdownOutput(); //need to change for http 1.1
  +             // FIXME (DIMS): IS THIS REALLY NEEDED? SalesRankNPrice fails
  +             // for a direct (non-proxy) connection if this is enabled.
  +             //if(null != sock) sock.shutdownOutput(); //need to change for http 1.1
              }
   
               // Read the response back from the server
  
  
  


Reply via email to