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 da...@apache.org on 2004/10/04 15:08:38 UTC

cvs commit: ws-axis/c/src/soap SoapDeSerializer.cpp

damitha     2004/10/04 06:08:38

  Modified:    c/src/soap SoapDeSerializer.cpp
  Log:
  Line 2393 it shoud be DOUBLE not DECIMAL. This was as a bug reported in jira
  
  Revision  Changes    Path
  1.91      +1 -1      ws-axis/c/src/soap/SoapDeSerializer.cpp
  
  Index: SoapDeSerializer.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/SoapDeSerializer.cpp,v
  retrieving revision 1.90
  retrieving revision 1.91
  diff -u -r1.90 -r1.91
  --- SoapDeSerializer.cpp	24 Sep 2004 09:46:39 -0000	1.90
  +++ SoapDeSerializer.cpp	4 Oct 2004 13:08:38 -0000	1.91
  @@ -2390,7 +2390,7 @@
           m_pNode = m_pParser->next();
           /* wrapper node with type info  Ex: <i xsi:type="xsd:int"> */
           if (!m_pNode) return ret;
  -        if (XSD_DECIMAL == getXSDType(m_pNode))
  +        if (XSD_DOUBLE == getXSDType(m_pNode))
           {
               m_pNode = m_pParser->next(true); /* charactor node */
               if (m_pNode && (CHARACTER_ELEMENT == m_pNode->m_type))