1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="IHelloservice" targetNamespace="WireImport" xmlns:tns="WireImport" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:ns1="urn:HelloIntf">
<types>
<xs:schema targetNamespace="urn:HelloIntf" xmlns="urn:HelloIntf">
<xs:complexType name="TOfmlStruct">
<xs:sequence>
<xs:element name="ManufacturerID" type="xs:string"/>
<xs:element name="Manufacturer" type="xs:string"/>
<xs:element name="Series" type="xs:string"/>
<xs:element name="BasicArticleCode" type="xs:string"/>
<xs:element name="FinalArticleCode" type="xs:string"/>
<xs:element name="Files3D" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</types>
<message name="SayHello0Request"/>
<message name="SayHello0Response">
<part name="return" type="xs:string"/>
</message>
<message name="GetOfmlInformation1Request">
<part name="ArticleCode" type="xs:string"/>
</message>
<message name="GetOfmlInformation1Response">
<part name="return" type="ns1:TOfmlStruct"/>
</message>
<message name="GetWirefusionFiles2Request">
<part name="ArticleCode" type="xs:string"/>
</message>
<message name="GetWirefusionFiles2Response">
<part name="return" type="ns1:TOfmlStruct"/>
</message>
<portType name="IHello">
<operation name="SayHello">
<input message="tns:SayHello0Request"/>
<output message="tns:SayHello0Response"/>
</operation>
<operation name="GetOfmlInformation">
<input message="tns:GetOfmlInformation1Request"/>
<output message="tns:GetOfmlInformation1Response"/>
</operation>
<operation name="GetWirefusionFiles">
<input message="tns:GetWirefusionFiles2Request"/>
<output message="tns:GetWirefusionFiles2Response"/>
</operation>
</portType>
<binding name="IHellobinding" type="tns:IHello">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="SayHello">
<soap:operation soapAction="urn:HelloIntf-IHello#SayHello" style="rpc"/>
<input>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:HelloIntf-IHello"/>
</input>
<output>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:HelloIntf-IHello"/>
</output>
</operation>
<operation name="GetOfmlInformation">
<soap:operation soapAction="urn:HelloIntf-IHello#GetOfmlInformation" style="rpc"/>
<input>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:HelloIntf-IHello"/>
</input>
<output>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:HelloIntf-IHello"/>
</output>
</operation>
<operation name="GetWirefusionFiles">
<soap:operation soapAction="urn:HelloIntf-IHello#GetWirefusionFiles" style="rpc"/>
<input>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:HelloIntf-IHello"/>
</input>
<output>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:HelloIntf-IHello"/>
</output>
</operation>
</binding>
<service name="IHelloservice">
<port name="IHelloPort" binding="tns:IHellobinding">
<soap:address location="http://127.0.0.1/cgi-bin/SoapServer.exe/soap/IHello"/>
</port>
</service>
</definitions> |
Partager