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 to...@apache.org on 2005/02/03 18:46:50 UTC

cvs commit: ws-axis/java/test/wsdl/clash duplicate-element.wsdl

tomj        2005/02/03 09:46:50

  Added:       java/test/wsdl/clash duplicate-element.wsdl
  Log:
  AXIS-1799 fix - continued.
  Add new test WSDL file.
  
  Revision  Changes    Path
  1.1                  ws-axis/java/test/wsdl/clash/duplicate-element.wsdl
  
  Index: duplicate-element.wsdl
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
    Test two element with the same name except for the first letter capitolization.
  -->
  
  <definitions targetNamespace="urn:clash.wsdl.test"
               xmlns="http://schemas.xmlsoap.org/wsdl/"
               xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
               xmlns:xsd="http://www.w3.org/2001/XMLSchema"
               xmlns:tns="urn:clash.wsdl.test">
      <types>
  
          <schema elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:clash.wsdl.test">
  
              <element name="describeLayout">
                  <complexType>
                      <sequence>
                          <element name="sObjectType" type="xsd:string"/>
                      </sequence>
                  </complexType>
              </element>
  
              <complexType name="DescribeLayout">
                  <sequence>
                      <element name="detailLayoutSections" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
                  </sequence>
              </complexType>
  
  	</schema>
      </types>
      
  </definitions>