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

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.tibco.com/schemas/tibcoRepository/Resources/JmsErrorSchema/Schema.xsd"
targetNamespace="http://www.tibco.com/schemas/tibcoRepository/Resources/JmsErrorSchema/Schema.xsd"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:element name="response">
<xs:complexType>
<xs:sequence>
<xs:element ref="status"/>
<xs:element ref="isError"/>
<xs:element ref="correlationID"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="status" type="xs:string"/>
<xs:element name="isError" type="xs:boolean"/>
<xs:element name="correlationID" type="xs:string"/>
</xs:schema>