<?xml version="1.0" encoding="utf-16"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://www.example.org/Hello/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://www.example.org/Hello/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:documentation>Hello</wsdl:documentation>
  <wsdl:types>
    <xsd:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://www.example.org/Hello/">
      <xsd:element name="Hello">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="in" type="xsd:string" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="HelloResponse">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="out" type="xsd:string" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:schema>
  </wsdl:types>
  <wsdl:message name="HelloRequest">
    <wsdl:part name="part1" element="tns:Hello" />
  </wsdl:message>
  <wsdl:message name="HelloResponse">
    <wsdl:part name="part1" element="tns:HelloResponse" />
  </wsdl:message>
  <wsdl:portType name="HelloPortType">
    <wsdl:operation name="Hello">
      <wsdl:input wsaw:Action="http://www.example.org/Hello/NewOperation" message="tns:HelloRequest" />
      <wsdl:output wsaw:Action="http://www.example.org/Hello/Hello/HelloResponse" message="tns:HelloResponse" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="HelloSOAP11Binding" type="tns:HelloPortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="Hello">
      <soap:operation soapAction="http://www.example.org/Hello/NewOperation" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="HelloSOAP12Binding" type="tns:HelloPortType">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="Hello">
      <soap12:operation soapAction="http://www.example.org/Hello/NewOperation" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="HelloHttpBinding" type="tns:HelloPortType">
    <http:binding verb="POST" />
    <wsdl:operation name="Hello">
      <http:operation location="Hello/Hello" />
      <wsdl:input>
        <mime:content part="Hello" type="text/xml" />
      </wsdl:input>
      <wsdl:output>
        <mime:content part="Hello" type="text/xml" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="Hello">
    <wsdl:port name="HelloSOAP11port_http" binding="tns:HelloSOAP11Binding">
      <soap:address location="http://localhost:8080/axis2/services/Hello" />
    </wsdl:port>
    <wsdl:port name="HelloSOAP12port_http" binding="tns:HelloSOAP12Binding">
      <soap12:address location="http://localhost:8080/axis2/services/Hello" />
    </wsdl:port>
    <wsdl:port name="HelloHttpport" binding="tns:HelloHttpBinding">
      <http:address location="http://localhost:8080/axis2/services/Hello" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>