<definitions name='MyWebServiceService' targetNamespace='http://MyWebService/' xmlns='http://schemas.xmlsoap.org/
wsdl/'
xmlns:
soap='http://schemas.xmlsoap.org/
wsdl/
soap/'
xmlns:tns='http://MyWebService/'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
<types>
<xs:schema targetNamespace='http://MyWebService/' version='1.0'
xmlns:tns='http://MyWebService/'
xmlns:xs='http://www.w3.org/2001/XMLSchema'>
<xs:element name='calci' type='tns:calci'/>
<xs:element name='calciResponse' type='tns:calciResponse'/>
<xs:element name='callc' type='tns:callc'/>
<xs:element name='callcResponse' type='tns:callcResponse'/>
<xs:complexType name='calci'>
<xs:sequence>
<xs:element minOccurs='0' name='p1' type='xs:string'/>
<xs:element minOccurs='0' name='p2' type='xs:string'/>
</xs:sequence>
</xs:complexType>
<xs:complexType name='calciResponse'>
<xs:sequence>
<xs:element minOccurs='0' name='return' type='xs:string'/>
</xs:sequence>
</xs:complexType>
<xs:complexType name='callc'>
<xs:sequence/>
</xs:complexType>
<xs:complexType name='callcResponse'>
<xs:sequence>
<xs:element minOccurs='0' name='return' type='xs:string'/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</types>
<message name='MyWebService_callc'>
<part element='tns:callc' name='callc'></part>
</message>
<message name='MyWebService_calciResponse'>
<part element='tns:calciResponse' name='calciResponse'></part>
</message>
<message name='MyWebService_callcResponse'>
<part element='tns:callcResponse' name='callcResponse'></part>
</message>
<message name='MyWebService_calci'>
<part element='tns:calci' name='calci'></part>
</message>
<portType name='MyWebService'>
<operation name='calci' parameterOrder='calci'>
<input message='tns:MyWebService_calci'></input>
<output message='tns:MyWebService_calciResponse'></output>
</operation>
<operation name='callc' parameterOrder='callc'>
<input message='tns:MyWebService_callc'></input>
<output message='tns:MyWebService_callcResponse'></output>
</operation>
</portType>
<binding name='MyWebServiceBinding' type='tns:MyWebService'>
<
soap:binding style='document' transport='http://schemas.xmlsoap.org/
soap/http'/>
<operation name='calci'>
<
soap:operation soapAction=''/>
<input>
<
soap:body use='literal'/>
</input>
<output>
<
soap:body use='literal'/>
</output>
</operation>
<operation name='callc'>
<
soap:operation soapAction=''/>
<input>
<
soap:body use='literal'/>
</input>
<output>
<
soap:body use='literal'/>
</output>
</operation>
</binding>
<service name='MyWebServiceService'>
<port binding='tns:MyWebServiceBinding' name='MyWebServicePort'>
<
soap:address location='http://testserver:8080/WebApplication/MyWebService'/>
</port>
</service>
</definitions>