-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Huge thanks to @dabooze for being patient while we sorted out the fiasco with the regression from several months ago and fixed this up. So glad that this has been resolved now.
- Loading branch information
Showing
2 changed files
with
88 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,85 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<definitions | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" | ||
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" | ||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | ||
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:s="http://www.w3.org/2001/XMLSchema" | ||
xmlns:article="http://example.com/article" | ||
xmlns:actions="http://example.com/actions" | ||
targetNamespace="http://example.com/actions"> | ||
<types> | ||
<s:schema elementFormDefault="qualified" targetNamespace="http://example.com/actions"> | ||
<s:element name="Save"> | ||
<s:complexType> | ||
<s:sequence> | ||
<s:element name="article" type="article:Article"/> | ||
</s:sequence> | ||
</s:complexType> | ||
</s:element> | ||
</s:schema> | ||
<s:schema elementFormDefault="qualified" targetNamespace="http://example.com/article"> | ||
<s:complexType name="Article"> | ||
<s:sequence> | ||
<s:element minOccurs="0" name="Author" type="s:string"/> | ||
<s:element minOccurs="0" name="Title" type="s:string"/> | ||
</s:sequence> | ||
</s:complexType> | ||
</s:schema> | ||
</types> | ||
<message name="SaveSoapIn"/> | ||
<message name="SaveSoapOut"> | ||
<part name="parameters" element="actions:SaveResponse"/> | ||
</message> | ||
<portType name="ArticleSoap"> | ||
<operation name="Save"> | ||
<input message="actions:SaveSoapIn"/> | ||
<output message="actions:SaveSoapOut"/> | ||
</operation> | ||
</portType> | ||
<binding name="ArticleSoap" type="actions:ArticleSoap"> | ||
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/> | ||
<operation name="Save"> | ||
<soap:operation soapAction="http://example.com/actions.Save" style="document"/> | ||
<input> | ||
<soap:body use="literal"/> | ||
</input> | ||
<output> | ||
<soap:body use="literal"/> | ||
</output> | ||
</operation> | ||
</binding> | ||
<service name="StudyMDL"> | ||
<port name="StudyMDLSoap" binding="actions:StudyMDLSoap"> | ||
<soap:address location="http://example.com:1234/soap"/> | ||
</port> | ||
</service> | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" | ||
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" | ||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | ||
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:s="http://www.w3.org/2001/XMLSchema" | ||
xmlns:article="http://example.com/article" | ||
xmlns:actions="http://example.com/actions" | ||
targetNamespace="http://example.com/actions"> | ||
<types> | ||
<s:schema elementFormDefault="qualified" targetNamespace="http://example.com/actions"> | ||
<s:element name="Save"> | ||
<s:complexType> | ||
<s:sequence> | ||
<s:element name="article" type="article:Article"/> | ||
</s:sequence> | ||
</s:complexType> | ||
</s:element> | ||
<s:element name="Delete"> | ||
<s:complexType> | ||
<s:sequence> | ||
<s:element name="article" type="article:Article"/> | ||
</s:sequence> | ||
</s:complexType> | ||
</s:element> | ||
|
||
</s:schema> | ||
<s:schema elementFormDefault="qualified" targetNamespace="http://example.com/article"> | ||
<s:complexType name="Article"> | ||
<s:sequence> | ||
<s:element minOccurs="0" name="Author" type="s:string"/> | ||
<s:element minOccurs="0" name="Title" type="s:string"/> | ||
</s:sequence> | ||
</s:complexType> | ||
</s:schema> | ||
</types> | ||
<message name="SaveSoapIn"/> | ||
<message name="SaveSoapOut"> | ||
<part name="parameters" element="actions:SaveResponse"/> | ||
</message> | ||
<message name="DeleteSoapIn"/> | ||
<message name="DeleteSoapOut"> | ||
<part name="parameters" element="DeleteResponse"/> | ||
</message> | ||
|
||
<portType name="ArticleSoap"> | ||
<operation name="Save"> | ||
<input message="actions:SaveSoapIn"/> | ||
<output message="actions:SaveSoapOut"/> | ||
</operation> | ||
<operation name="Delete"> | ||
<input message="DeleteSoapIn"/> | ||
<output message="DeleteSoapOut"/> | ||
</operation> | ||
</portType> | ||
<binding name="ArticleSoap" type="actions:ArticleSoap"> | ||
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/> | ||
<operation name="Save"> | ||
<soap:operation soapAction="http://example.com/actions.Save" style="document"/> | ||
<input> | ||
<soap:body use="literal"/> | ||
</input> | ||
<output> | ||
<soap:body use="literal"/> | ||
</output> | ||
</operation> | ||
<operation name="Delete"> | ||
<soap:operation soapAction="http://example.com/actions.Delete" style="document"/> | ||
<input> | ||
<soap:body use="literal"/> | ||
</input> | ||
<output> | ||
<soap:body use="literal"/> | ||
</output> | ||
</operation> | ||
</binding> | ||
<service name="StudyMDL"> | ||
<port name="StudyMDLSoap" binding="actions:StudyMDLSoap"> | ||
<soap:address location="http://example.com:1234/soap"/> | ||
</port> | ||
</service> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters