Visual Studio 2010 で c# を使用して SOAP サービスを使用しようとしています。新しいサービス参照を試してみますが、常にそのエラーが発生します
カスタム ツール エラー: サービス参照 'easyZM' のコードを生成できませんでした。詳細については、その他のエラーおよび警告メッセージを確認してください。path\Service References\serviceTest\Reference.svcmap
それらの警告で:
警告 13 カスタム ツールの警告: wsdl:portType をインポートできません
詳細: WSDL インポート拡張機能の実行中に例外がスローされました: System.ServiceModel.Description.DataContractSerializerMessageContractImporter
エラー: http://schemas.xmlsoap.org/wsdl/:putDkmの定義が見つかりません。名前空間http://schemas.xmlsoap.org/wsdl/の Service Descriptionがありません。
パラメータ名: 名前
エラー ソースへの XPath: //wsdl:definitions[@targetNamespace='urn:Easy']/wsdl:portType[@name='EasyPort'] path\Service References\serviceTest\Reference.svcmap
どうすればいいのかわかりません。このWCFエラーはどういう意味ですか:「カスタムツールの警告:wsdl:portTypeをインポートできません」という質問を見ましたが、そこに提供されている解決策はどれもうまくいきませんでした。
wsdl へのパス: https://ews.zav-mb.si/easy/wsdl/easy.wsdl
何か案は?
他の誰かが自分の結果を報告してみることができますか?
問題は wsdl ファイル自体にある可能性が高いことがわかりました。しかし、私はそれを修正する方法がわかりません。
<definitions xmlns:tns="urn:Easy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" name="Easy" targetNamespace="urn:Easy">
<types>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Hello">
<xsd:element name="fileName" type="xsd:string"/>
<xsd:element name="fileContent" type="xsd:string"/>
<xsd:element name="fileSize" type="xsd:int"/>
<xsd:element name="easyDocRef" type="xsd:string"/>
<xsd:element name="message" type="xsd:string"/>
<xsd:element name="result" type="xsd:boolean"/>
</xsd:schema>
</types>
<message name="putDkm">
<part name="fileName" type="tns:fileName"/>
<part name="fileContentBase64Encoded" type="tns:fileContent"/>
<part name="fileSize" type="tns:fileSize"/>
</message>
<message name="putDkmResponse">
<part name="result" type="tns:result"/>
<part name="message" type="tns:message"/>
<part name="easyDocref" type="tns:easyDocRef"/>
</message>
<!-- get stuff -->
<message name="get">
<part name="easyDocRef" type="tns:getEasyDocRef"/>
</message>
<message name="getResponse">
<part name="result" type="tns:result"/>
<part name="message" type="tns:message"/>
<part name="fileContentBase64Encoded" type="tns:fileContent"/>
<part name="fileName" type="tns:fileName"/>
</message>
<portType name="EasyPort">
<operation name="putDkm">
<input message="putDkm"/>
<output message="tns:putDkmResponse"/>
</operation>
<operation name="get">
<input message="get"/>
<output message="tns:getResponse"/>
</operation>
</portType>
<binding name="EasyBinding" type="tns:EasyPort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="putDkm">
<soap:operation soapAction="urn:putDkmAction"/>
<input>
<soap:body use="encoded" namespace="urn:Easy" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:Easy" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
<operation name="get">
<soap:operation soapAction="urn:getAction"/>
<input>
<soap:body use="encoded" namespace="urn:Easy" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:Easy" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="EasyService">
<port name="EasyPort" binding="tns:EasyBinding">
<soap:address location="https://ews.zav-mb.si/easy/index.php"/>
</port>
</service>
</definitions>