jms and http in one wsdl file

This commit is contained in:
wojciech
2024-08-27 17:21:30 +02:00
parent 96b1a57b06
commit c5ba243f13
28 changed files with 791 additions and 377 deletions

View File

@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Created with Liquid Studio 2018 (https://www.liquid-technologies.com) -->
<xs:schema xmlns:a="http://www.demo.com/author"
<xs:schema xmlns:a="http://www.demo.com/GetResponse"
xmlns:p="http://www.demo.com/person"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:ns0="http://www.demo.com/author"
targetNamespace="http://www.demo.com/author"
targetNamespace="http://www.demo.com/GetResponse"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:complexType name="AuthorType">
<xs:complexContent>
<xs:extension base="ns0:PersonType">
<xs:extension base="a:PersonType">
<xs:sequence>
<xs:element name="dateOfBirth" type="xs:date"/>
<xs:element name="dateOfDeath" type="xs:date" minOccurs="0"/>
@@ -18,10 +18,10 @@
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="author" type="ns0:AuthorType"/>
<xs:element name="author" type="a:AuthorType"/>
<xs:complexType name="AuthorsType">
<xs:sequence>
<xs:element ref="ns0:author" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="a:author" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PersonType">
@@ -32,5 +32,5 @@
</xs:sequence>
<xs:attribute name="id" type="xs:int"/>
</xs:complexType>
<xs:element name="authors" type="ns0:AuthorsType"/>
<xs:element name="authors" type="a:AuthorsType"/>
</xs:schema>