You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2004/09/06 09:14:44 UTC

cvs commit: ws-axis/c/src/transport/axis HttpTransport.cpp

samisa      2004/09/06 00:14:44

  Modified:    c/src/transport/axis HttpTransport.cpp
  Log:
  Fixed the bug where HTTP1.0 was used in place of HTTP1.1
  
  Revision  Changes    Path
  1.42      +1 -1      ws-axis/c/src/transport/axis/HttpTransport.cpp
  
  Index: HttpTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis/HttpTransport.cpp,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- HttpTransport.cpp	20 Aug 2004 09:41:51 -0000	1.41
  +++ HttpTransport.cpp	6 Sep 2004 07:14:43 -0000	1.42
  @@ -403,7 +403,7 @@
        */
       if(m_bUseProxy) 
       {
  -    	m_OutHttpHeaders += m_Url.getURL() + " HTTP/1.0\r\n";
  +    	m_OutHttpHeaders += m_Url.getURL() + " HTTP/1.1\r\n";
       }
       else
   	m_OutHttpHeaders += m_Url.GetResource () + " HTTP/1.1\r\n";