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 sa...@apache.org on 2004/10/28 13:14:00 UTC

cvs commit: ws-axis/c/include/axis/server IWrapperSoapDeSerializer.h IWrapperSoapDeSerializer.hpp

samisa      2004/10/28 04:14:00

  Modified:    c/include/axis/client Call.hpp
               c/include/axis/server IWrapperSoapDeSerializer.h
                        IWrapperSoapDeSerializer.hpp
  Log:
  Fixed the problem of calling getElementAsDouble inside s_GetElementAsDecimal.
  Jira AXISCPP-200
  
  Revision  Changes    Path
  1.3       +1 -1      ws-axis/c/include/axis/client/Call.hpp
  
  Index: Call.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/client/Call.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Call.hpp	25 Oct 2004 15:34:41 -0000	1.2
  +++ Call.hpp	28 Oct 2004 11:14:00 -0000	1.3
  @@ -479,7 +479,7 @@
       { return ((CallBase*)pObj)->getElementAsDouble(pName, pNamespace);};
       static double AXISCALL s_GetElementAsDecimal(void* pObj,
           const AxisChar* pName, const AxisChar* pNamespace)
  -    { return ((CallBase*)pObj)->getElementAsDouble(pName, pNamespace);};
  +    { return ((CallBase*)pObj)->getElementAsDecimal(pName, pNamespace);};
       static AxisChar* AXISCALL s_GetElementAsString(void* pObj,
           const AxisChar* pName, const AxisChar* pNamespace)
       { return ((CallBase*)pObj)->getElementAsString(pName, pNamespace);};
  
  
  
  1.27      +1 -1      ws-axis/c/include/axis/server/IWrapperSoapDeSerializer.h
  
  Index: IWrapperSoapDeSerializer.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/server/IWrapperSoapDeSerializer.h,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- IWrapperSoapDeSerializer.h	20 Aug 2004 13:03:37 -0000	1.26
  +++ IWrapperSoapDeSerializer.h	28 Oct 2004 11:14:00 -0000	1.27
  @@ -366,7 +366,7 @@
       pNamespace);};
       static double AXISCALL s_GetElementAsDecimal(void* pObj, 
           const AxisChar* pName, const AxisChar* pNamespace)
  -    { return ((IWrapperSoapDeSerializer*)pObj)->getElementAsDouble(pName, 
  +    { return ((IWrapperSoapDeSerializer*)pObj)->getElementAsDecimal(pName, 
       pNamespace);};
       static AxisChar* AXISCALL s_GetElementAsString(void* pObj, 
           const AxisChar* pName, const AxisChar* pNamespace)
  
  
  
  1.3       +1 -1      ws-axis/c/include/axis/server/IWrapperSoapDeSerializer.hpp
  
  Index: IWrapperSoapDeSerializer.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/server/IWrapperSoapDeSerializer.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IWrapperSoapDeSerializer.hpp	26 Oct 2004 09:11:04 -0000	1.2
  +++ IWrapperSoapDeSerializer.hpp	28 Oct 2004 11:14:00 -0000	1.3
  @@ -366,7 +366,7 @@
       pNamespace);};
       static double AXISCALL s_GetElementAsDecimal(void* pObj, 
           const AxisChar* pName, const AxisChar* pNamespace)
  -    { return ((IWrapperSoapDeSerializer*)pObj)->getElementAsDouble(pName, 
  +    { return ((IWrapperSoapDeSerializer*)pObj)->getElementAsDecimal(pName, 
       pNamespace);};
       static AxisChar* AXISCALL s_GetElementAsString(void* pObj, 
           const AxisChar* pName, const AxisChar* pNamespace)