<?xml version='1.0' encoding='UTF-8'?><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://learnwebservices.com/services/hello" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="HelloEndpointService" targetNamespace="http://learnwebservices.com/services/hello">
<wsdl:types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://learnwebservices.com/services/hello" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://learnwebservices.com/services/hello">
<xs:complexType name="helloRequest">
<xs:sequence>
<xs:element name="Name" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="helloResponse">
<xs:sequence>
<xs:element name="Message" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="HelloRequest" nillable="true" type="helloRequest"/>
<xs:element name="HelloResponse" nillable="true" type="helloResponse"/>
</xs:schema>
</wsdl:types>
<wsdl:message name="SayHelloResponse">
<wsdl:part element="tns:HelloResponse" name="HelloResponse">
</wsdl:part>
</wsdl:message>
<wsdl:message name="SayHello">
<wsdl:part element="tns:HelloRequest" name="HelloRequest">
</wsdl:part>
</wsdl:message>
<wsdl:portType name="HelloEndpoint">
<wsdl:operation name="SayHello">
<wsdl:input message="tns:SayHello" name="SayHello">
</wsdl:input>
<wsdl:output message="tns:SayHelloResponse" name="SayHelloResponse">
</wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="HelloEndpointServiceSoapBinding" type="tns:HelloEndpoint">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="SayHello">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="SayHello">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="SayHelloResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="HelloEndpointService">
<wsdl:port binding="tns:HelloEndpointServiceSoapBinding" name="HelloEndpointPort">
<soap:address location="https://apps.learnwebservices.com/services/hello"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>