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 pr...@apache.org on 2006/01/17 16:09:16 UTC

svn commit: r369808 - /webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp

Author: prestonf
Date: Tue Jan 17 07:09:13 2006
New Revision: 369808

URL: http://svn.apache.org/viewcvs?rev=369808&view=rev
Log:
Change made to getElement.  The code for end element needed to be updated as it was skipping the end tag when the tag was a start-end or there was no data between the start and end tags.

Modified:
    webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp

Modified: webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp?rev=369808&r1=369807&r2=369808&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp (original)
+++ webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp Tue Jan 17 07:09:13 2006
@@ -1792,7 +1792,8 @@
         else if (m_pNode && (END_ELEMENT == m_pNode->m_type) ) // empty tag case <tag/>
         {
             pSimpleType->deserialize("");
-            m_pNode = m_pParser->next();
+//            m_pNode = m_pParser->next();
+            m_pNode = NULL;
             return;
         }
         else