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 du...@apache.org on 2005/11/29 09:06:33 UTC

svn commit: r349664 - in /webservices/axis/trunk/c/include/axis: AxisWrapperAPI.hpp IWrapperSoapSerializer.hpp client/Call.hpp

Author: dushshantha
Date: Tue Nov 29 00:06:19 2005
New Revision: 349664

URL: http://svn.apache.org/viewcvs?rev=349664&view=rev
Log:
rollback the changed i have made as a fix to AXISCPP-843 becouse it is fixed.

Modified:
    webservices/axis/trunk/c/include/axis/AxisWrapperAPI.hpp
    webservices/axis/trunk/c/include/axis/IWrapperSoapSerializer.hpp
    webservices/axis/trunk/c/include/axis/client/Call.hpp

Modified: webservices/axis/trunk/c/include/axis/AxisWrapperAPI.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/include/axis/AxisWrapperAPI.hpp?rev=349664&r1=349663&r2=349664&view=diff
==============================================================================
--- webservices/axis/trunk/c/include/axis/AxisWrapperAPI.hpp (original)
+++ webservices/axis/trunk/c/include/axis/AxisWrapperAPI.hpp Tue Nov 29 00:06:19 2005
@@ -59,7 +59,7 @@
  * Function that serializes a custom type. bArray indicates that the object 
  * in void is an element of an array (note that void* is not itself an array).
  */
-typedef int (* AXIS_SERIALIZE_FUNCT)(void*, void*, bool bArray, bool nsQualified = false);
+typedef int (* AXIS_SERIALIZE_FUNCT)(void*, void*, bool bArray);
 
 /**
  * @fn AXIS_OBJECT_SIZE_FUNCT

Modified: webservices/axis/trunk/c/include/axis/IWrapperSoapSerializer.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/include/axis/IWrapperSoapSerializer.hpp?rev=349664&r1=349663&r2=349664&view=diff
==============================================================================
--- webservices/axis/trunk/c/include/axis/IWrapperSoapSerializer.hpp (original)
+++ webservices/axis/trunk/c/include/axis/IWrapperSoapSerializer.hpp Tue Nov 29 00:06:19 2005
@@ -94,7 +94,7 @@
 
     /* for complex types */
     virtual int AXISCALL addOutputCmplxParam(void* pObject, void* pSZFunct, 
-        void* pDelFunct, const AxisChar* pName, const AxisChar* pNamespace, bool nsQualified = false) = 0;
+        void* pDelFunct, const AxisChar* pName, const AxisChar* pNamespace) = 0;
 
     virtual int AXISCALL addFaultDetail(void* pObject, void* pSZFunct,
         void* pDelFunct, const AxisChar* pName, const AxisChar* pNamespace) = 0;
@@ -115,7 +115,7 @@
         void* pValue, XSDTYPE type)=0;
 
     virtual int AXISCALL serializeAsElement(const AxisChar* sName, const AxisChar* pNamespace, 
-        void* pValue, XSDTYPE type, bool nsQualified = false)=0;
+        void* pValue, XSDTYPE type)=0;
 
     virtual int AXISCALL serializeAsAttribute(const AxisChar* sName, 
         const AxisChar* pNamespace, void* pValue, XSDTYPE type)=0;

Modified: webservices/axis/trunk/c/include/axis/client/Call.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/include/axis/client/Call.hpp?rev=349664&r1=349663&r2=349664&view=diff
==============================================================================
--- webservices/axis/trunk/c/include/axis/client/Call.hpp (original)
+++ webservices/axis/trunk/c/include/axis/client/Call.hpp Tue Nov 29 00:06:19 2005
@@ -101,7 +101,7 @@
 
     /* Method for adding complex parameters */
     void AXISCALL addCmplxParameter(void* pObject, void* pSZFunct,
-        void* pDelFunct, const AxisChar* pName, const AxisChar* pNamespace, bool nsQualified = false);
+        void* pDelFunct, const AxisChar* pName, const AxisChar* pNamespace);
     /* Method for adding complex type array parameters */
     void AXISCALL addCmplxArrayParameter(Axis_Array* pArray, void* pSZFunct,
         void* pDelFunct, void* pSizeFunct, const AxisChar* pName,