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/08 11:01:10 UTC

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

samisa      2004/10/08 02:01:10

  Modified:    c/src/soap URIMapping.cpp
  Log:
  Resolved Jira issue AXISCPP-94
  
  Revision  Changes    Path
  1.14      +6 -0      ws-axis/c/src/soap/URIMapping.cpp
  
  Index: URIMapping.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/URIMapping.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- URIMapping.cpp	23 Sep 2004 15:12:58 -0000	1.13
  +++ URIMapping.cpp	8 Oct 2004 09:01:09 -0000	1.14
  @@ -47,10 +47,16 @@
           m_sURIMap[__TRC("http://www.w3.org/2001/XMLSchema")] = URI_XSD;
           m_sURIMap[__TRC("http://www.w3.org/2001/XMLSchema-instance")] = 
               URI_XSI;
  +
           m_sURIMap[__TRC("http://www.w3.org/2001/06/soap-encoding")] = URI_ENC;
   		m_sURIMap[__TRC("http://schemas.xmlsoap.org/soap/encoding/")] = URI_ENC;
           m_sURIMap[__TRC("http://schemas.xmlsoap.org/soap/envelope/")] = 
               URI_ENVELOPE;
  +
  +        m_sURIMap[__TRC("http://www.w3.org/1999/XMLSchema")] = URI_XSD;
  +        m_sURIMap[__TRC("http://www.w3.org/1999/XMLSchema-instance")] = 
  +            URI_XSI;
  +
           m_bInit = true;
       }
   }