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 cd...@apache.org on 2005/09/12 14:50:31 UTC

svn commit: r280334 - /webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp

Author: cdinapala
Date: Mon Sep 12 05:50:25 2005
New Revision: 280334

URL: http://svn.apache.org/viewcvs?rev=280334&view=rev
Log:
Done some change to recover lost bytes in receiving message.

Changed the line 1538 of HTTPTransport.cpp to 
if( (m_eProtocolType == APTHTTP1_0) || (m_eProtocolType == APTHTTP1_1) )

Modified:
    webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp

Modified: webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp?rev=280334&r1=280333&r2=280334&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp (original)
+++ webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp Mon Sep 12 05:50:25 2005
@@ -1535,7 +1535,7 @@
 	}
 	else
 	{
-		if( m_eProtocolType == APTHTTP1_0)
+		if( (m_eProtocolType == APTHTTP1_0) || (m_eProtocolType == APTHTTP1_1) )
 		{
 			m_GetBytesState = eSOAPMessageIsNotChunked;
 			m_iContentLength = m_iBytesLeft;