You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2007/05/08 00:10:29 UTC

svn commit: r536005 - in /webservices/axis/trunk/c/src: transport/axis3/HTTPTransport.cpp xml/XMLParser.h

Author: nadiramra
Date: Mon May  7 15:10:28 2007
New Revision: 536005

URL: http://svn.apache.org/viewvc?view=rev&rev=536005
Log:
Fix some compile problems on some platforms.

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

Modified: webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp?view=diff&rev=536005&r1=536004&r2=536005
==============================================================================
--- webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp (original)
+++ webservices/axis/trunk/c/src/transport/axis3/HTTPTransport.cpp Mon May  7 15:10:28 2007
@@ -124,7 +124,7 @@
 {
     m_GetBytesState = eWaitingForHTTPHeader;
     
-    m_strReceived.erase(0);
+    m_strReceived.clear();
     m_iBytesLeft = 0;
     m_iChunkedDataLeftToConsume = 0;
     m_iNextChunkedDataSize = 0;

Modified: webservices/axis/trunk/c/src/xml/XMLParser.h
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/xml/XMLParser.h?view=diff&rev=536005&r1=536004&r2=536005
==============================================================================
--- webservices/axis/trunk/c/src/xml/XMLParser.h (original)
+++ webservices/axis/trunk/c/src/xml/XMLParser.h Mon May  7 15:10:28 2007
@@ -197,7 +197,7 @@
     bool m_bCanParseMore;
     int m_iStatus;
     int m_iErrorCode;
-    string m_sErrorString;
+    std::string m_sErrorString;
 };
 
 #endif



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org