Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 63314 invoked from network); 28 Oct 2004 11:14:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 28 Oct 2004 11:14:05 -0000 Received: (qmail 7521 invoked by uid 500); 28 Oct 2004 11:14:03 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 7447 invoked by uid 500); 28 Oct 2004 11:14:02 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 7434 invoked by uid 99); 28 Oct 2004 11:14:02 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 28 Oct 2004 04:14:02 -0700 Received: (qmail 63286 invoked by uid 1852); 28 Oct 2004 11:14:00 -0000 Date: 28 Oct 2004 11:14:00 -0000 Message-ID: <20041028111400.63285.qmail@minotaur.apache.org> From: samisa@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/c/include/axis/server IWrapperSoapDeSerializer.h IWrapperSoapDeSerializer.hpp X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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)