<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://bad.examples.pocketsoap.com/wsdl/" targetNamespace="http://bad.examples.pocketsoap.com/wsdl/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://bad.examples.pocketsoap.com/wsdl/">
      <s:element name="sayHello">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="name" type="s:string"/>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="sayHelloResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="sayHelloResult" type="s:string"/>
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="sayHelloSoapIn">
    <wsdl:part name="params" element="tns:sayHello"/>
  </wsdl:message>
  <wsdl:message name="sayHelloSoapOut">
    <wsdl:part name="params" element="tns:sayHelloResponse"/>
  </wsdl:message>
  <wsdl:portType name="HelloWorldSoap">
    <wsdl:operation name="sayHello">
      <wsdl:input message="tns:sayHelloSoapIn"/>
      <wsdl:output message="tns:sayHelloSoapOut"/>
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="HelloWorldSoap" type="tns:HelloWorldSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <wsdl:operation name="sayHello">
      <soap:operation soapAction="http://bad.examples.pocketsoap.com/wsdl/sayHello" 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="HelloWorld">
    <documentation xmlns="http://schemas.xmlsoap.org/wsdl/"/>
    <wsdl:port name="HelloWorldSoap" binding="tns:HelloWorldSoap">
      <soap:address location="http://sample.org/foo/"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>
