<?xml version="1.0" encoding="UTF-8"?><wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:cs="https://predic8.de/cities" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:s="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="https://predic8.de/cities" name="cities">
    <wsdl:types>
        <xsd:schema targetNamespace="https://predic8.de/cities">
            <xsd:element name="getCity">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="name" type="xsd:string"></xsd:element>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>
            <xsd:element name="getCityResponse">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="country" type="xsd:string"></xsd:element>
                        <xsd:element name="population" type="xsd:integer"></xsd:element>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>
        </xsd:schema>
    </wsdl:types>
    <wsdl:message name="City">
        <wsdl:part name="getCity" element="cs:getCity"></wsdl:part>
    </wsdl:message>
    <wsdl:message name="CityResponse">
        <wsdl:part name="getCityResponse" element="cs:getCityResponse"></wsdl:part>
    </wsdl:message>
    <wsdl:portType name="CityPort">
        <wsdl:operation name="getCity">
            <wsdl:input message="cs:City"></wsdl:input>
            <wsdl:output message="cs:CityResponse"></wsdl:output>
        </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="CitySoapBinding" type="cs:CityPort">
        <s:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"></s:binding>
        <wsdl:operation name="getCity">
            <s:operation soapAction="https://predic8.de/cities"></s:operation>
            <wsdl:input>
                <s:body use="literal" namespace="https://predic8.de/cities"></s:body>
            </wsdl:input>
            <wsdl:output>
                <s:body use="literal" namespace="https://predic8.de/cities"></s:body>
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="CityService">
        <wsdl:port name="CityPort" binding="cs:CitySoapBinding">
            <s:address location="https://www.predic8.de/city-service"></s:address>
        </wsdl:port>
    </wsdl:service>
</wsdl:definitions>