Pessoal estou tentando criar um cliente para um webservice feito em delphi… porem recebi a msg de erro que vai na imagem anexo:
fiz o mais simples possivel NEW - > webServiceCliente -> passei a URL -> JAX-WS style
segue o WSDL
[code]
<definitions name="IEchoServiceservice" targetNamespace="http://tempuri.org/">
−
−
<xs:schema targetNamespace=“urn:EchoServiceIntf”>
−
<xs:complexType name=“ArrayofString”>
−
xs:complexContent
−
<xs:restriction base=“soapenc:Array”>
xs:sequence/
<xs:attribute ref=“soapenc:arrayType” n1:arrayType=“xs:string[]”/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
−
<xs:complexType name=“ArrayofWString”>
−
xs:complexContent
−
<xs:restriction base=“soapenc:Array”>
xs:sequence/
<xs:attribute ref=“soapenc:arrayType” n1:arrayType=“xs:string[]”/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
−
<xs:complexType name=“ArrayofInt”>
−
xs:complexContent
−
<xs:restriction base=“soapenc:Array”>
xs:sequence/
<xs:attribute ref=“soapenc:arrayType” n1:arrayType=“xs:int[]”/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
−
<xs:complexType name=“ArrayofDouble”>
−
xs:complexContent
−
<xs:restriction base=“soapenc:Array”>
xs:sequence/
<xs:attribute ref=“soapenc:arrayType” n1:arrayType=“xs:double[]”/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
−
<xs:complexType name=“SoapStruct”>
−
xs:sequence
<xs:element name=“varString” type=“xs:string”/>
<xs:element name=“varWString” type=“xs:string”/>
<xs:element name=“varInt” type=“xs:int”/>
<xs:element name=“varDouble” type=“xs:double”/>
</xs:sequence>
</xs:complexType>
−
<xs:complexType name=“ArrayofSOAPStruct”>
−
xs:complexContent
−
<xs:restriction base=“soapenc:Array”>
xs:sequence/
<xs:attribute ref=“soapenc:arrayType” n1:arrayType=“ns1:SoapStruct[]”/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
</xs:schema>
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
−
<soap:binding style=“rpc” transport=“http://schemas.xmlsoap.org/soap/http”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoString” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoWString” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoInt” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoDouble” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoBoolean” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoTDateTime” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoStringArray” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoWStringArray” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoIntArray” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoDoubleArray” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoSoapStruct” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoSoapStructArray” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoDate” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#echoDecimal” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#GetAttachment” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
−
mime:multipartRelated
−
mime:part
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
</mime:part>
−
mime:part
<mime:content part=“return” type=“application/binary”/>
</mime:part>
</mime:multipartRelated>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#SendAttachment” style=“rpc”/>
−
−
mime:multipartRelated
−
mime:part
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
</mime:part>
−
mime:part
<mime:content part=“Attachment” type=“application/binary”/>
</mime:part>
</mime:multipartRelated>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:operation soapAction=“urn:EchoServiceIntf-IEchoService#GetAttachmentList” style=“rpc”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
<soap:body use=“encoded” encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“urn:EchoServiceIntf-IEchoService”/>
−
−
<soap:address location=“http://200.206.180.47:9092/echoservice_cgi.exe/soap/IEchoService”/>
[/code]
abracos
