1<?xml version="1.0" encoding="UTF-8"?>
2<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
3    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
4    xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="urn:HelloWorld"
5    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
6    xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
7    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
8    xmlns:foo="urn:Bar1"
9    targetNamespace="urn:HelloWorld"
10    xmlns="http://schemas.xmlsoap.org/wsdl/">
11    <types>
12        <s:schema>
13            <s:import namespace="urn:HelloWorld" schemaLocation="import.xsd"/>
14        </s:schema>
15    </types>
16
17    <message name="sayHelloSoapIn">
18        <part name="parameters" element="s0:sayHello" />
19    </message>
20
21    <message name="sayHelloSoapOut">
22        <part name="parameters" element="s0:sayHelloResponse" />
23    </message>
24
25    <portType name="Service1Soap">
26        <operation name="sayHello">
27            <input message="s0:sayHelloSoapIn" />
28            <output message="s0:sayHelloSoapOut" />
29        </operation>
30    </portType>
31
32    <binding name="Service1Soap" type="s0:Service1Soap">
33        <soap:binding transport="http://schemas.xmlsoap.org/soap/http"
34            style="document" />
35
36        <operation name="sayHello">
37            <soap:operation soapAction="urn:HelloWorld#sayHello"
38                style="document" />
39
40            <input>
41                <soap:body use="literal" />
42            </input>
43
44            <output>
45                <soap:body use="literal" />
46            </output>
47        </operation>
48    </binding>
49
50
51</definitions>
52
53