Last active
August 12, 2023 10:10
-
-
Save pbattisson/d4fb82d40c253092287fb6ebb55b9609 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="utf-8"?> | |
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="https://www.w3schools.com/xml/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="https://www.w3schools.com/xml/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | |
<wsdl:types> | |
<s:schema elementFormDefault="qualified" targetNamespace="https://www.w3schools.com/xml/"> | |
<s:element name="FahrenheitToCelsius"> | |
<s:complexType> | |
<s:sequence> | |
<s:element minOccurs="0" maxOccurs="1" name="Fahrenheit" type="s:string" /> | |
</s:sequence> | |
</s:complexType> | |
</s:element> | |
<s:element name="FahrenheitToCelsiusResponse"> | |
<s:complexType> | |
<s:sequence> | |
<s:element minOccurs="0" maxOccurs="1" name="FahrenheitToCelsiusResult" type="s:string" /> | |
</s:sequence> | |
</s:complexType> | |
</s:element> | |
<s:element name="CelsiusToFahrenheit"> | |
<s:complexType> | |
<s:sequence> | |
<s:element minOccurs="0" maxOccurs="1" name="Celsius" type="s:string" /> | |
</s:sequence> | |
</s:complexType> | |
</s:element> | |
<s:element name="CelsiusToFahrenheitResponse"> | |
<s:complexType> | |
<s:sequence> | |
<s:element minOccurs="0" maxOccurs="1" name="CelsiusToFahrenheitResult" type="s:string" /> | |
</s:sequence> | |
</s:complexType> | |
</s:element> | |
<s:element name="string" nillable="true" type="s:string" /> | |
</s:schema> | |
</wsdl:types> | |
<wsdl:message name="FahrenheitToCelsiusSoapIn"> | |
<wsdl:part name="parameters" element="tns:FahrenheitToCelsius" /> | |
</wsdl:message> | |
<wsdl:message name="FahrenheitToCelsiusSoapOut"> | |
<wsdl:part name="parameters" element="tns:FahrenheitToCelsiusResponse" /> | |
</wsdl:message> | |
<wsdl:message name="CelsiusToFahrenheitSoapIn"> | |
<wsdl:part name="parameters" element="tns:CelsiusToFahrenheit" /> | |
</wsdl:message> | |
<wsdl:message name="CelsiusToFahrenheitSoapOut"> | |
<wsdl:part name="parameters" element="tns:CelsiusToFahrenheitResponse" /> | |
</wsdl:message> | |
<wsdl:portType name="TempConvertSoap"> | |
<wsdl:operation name="FahrenheitToCelsius"> | |
<wsdl:input message="tns:FahrenheitToCelsiusSoapIn" /> | |
<wsdl:output message="tns:FahrenheitToCelsiusSoapOut" /> | |
</wsdl:operation> | |
<wsdl:operation name="CelsiusToFahrenheit"> | |
<wsdl:input message="tns:CelsiusToFahrenheitSoapIn" /> | |
<wsdl:output message="tns:CelsiusToFahrenheitSoapOut" /> | |
</wsdl:operation> | |
</wsdl:portType> | |
<wsdl:binding name="TempConvertSoap" type="tns:TempConvertSoap"> | |
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> | |
<wsdl:operation name="FahrenheitToCelsius"> | |
<soap:operation soapAction="https://www.w3schools.com/xml/FahrenheitToCelsius" style="document" /> | |
<wsdl:input> | |
<soap:body use="literal" /> | |
</wsdl:input> | |
<wsdl:output> | |
<soap:body use="literal" /> | |
</wsdl:output> | |
</wsdl:operation> | |
<wsdl:operation name="CelsiusToFahrenheit"> | |
<soap:operation soapAction="https://www.w3schools.com/xml/CelsiusToFahrenheit" style="document" /> | |
<wsdl:input> | |
<soap:body use="literal" /> | |
</wsdl:input> | |
<wsdl:output> | |
<soap:body use="literal" /> | |
</wsdl:output> | |
</wsdl:operation> | |
</wsdl:binding> | |
<wsdl:service name="TempConvert"> | |
<wsdl:port name="TempConvertSoap" binding="tns:TempConvertSoap"> | |
<soap:address location="https://www.w3schools.com/xml/tempconvert.asmx" /> | |
</wsdl:port> | |
</wsdl:service> | |
</wsdl:definitions> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment