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/02/05 19:37:47 UTC

svn commit: r503803 - /webservices/axis/trunk/c/src/common/Param.cpp

Author: nadiramra
Date: Mon Feb  5 10:37:46 2007
New Revision: 503803

URL: http://svn.apache.org/viewvc?view=rev&rev=503803
Log:
AXISCPP-796 remove appending of "Array" - no reason for it.

Modified:
    webservices/axis/trunk/c/src/common/Param.cpp

Modified: webservices/axis/trunk/c/src/common/Param.cpp
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/common/Param.cpp?view=diff&rev=503803&r1=503802&r2=503803
==============================================================================
--- webservices/axis/trunk/c/src/common/Param.cpp (original)
+++ webservices/axis/trunk/c/src/common/Param.cpp Mon Feb  5 10:37:46 2007
@@ -82,11 +82,11 @@
                 if (!m_strPrefix.empty ())
                 {
                     pSZ.serialize (m_strPrefix.c_str (), ":", m_sName.c_str (),
-                        "Array", " xmlns:", m_strPrefix.c_str (), "=\"",
+                         " xmlns:", m_strPrefix.c_str (), "=\"",
                         m_strUri.c_str (), "\"", NULL);
                 }
                 else
-                    pSZ.serialize (m_sName.c_str (), "Array", NULL);
+                    pSZ.serialize (m_sName.c_str (), NULL);
 
                 // get a prefix from Serializer
                 ATprefix = pSZ.getNamespacePrefix (m_Value.pArray->m_URI.c_str ());
@@ -121,9 +121,9 @@
                 m_Value.pArray->Serialize (pSZ); //Only serializes the inner items
                 pSZ.serialize ("</", NULL);
                 if (!m_strPrefix.empty ())
-                    pSZ.serialize (m_strPrefix.c_str (), ":", m_sName.c_str (), "Array", NULL);
+                    pSZ.serialize (m_strPrefix.c_str (), ":", m_sName.c_str (), NULL);
                 else
-                    pSZ.serialize (m_sName.c_str (), "Array", NULL);
+                    pSZ.serialize (m_sName.c_str (), NULL);
 
                 pSZ.removeNamespacePrefix (m_Value.pArray->m_URI.c_str ());
                 pSZ.serialize (">\n", NULL);



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