我正在尝试使用c#在Visual Studio 2010中使用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/的服务描述。
参数名称:名称
XPath to Error Source:// wsdl:definitions [@ targetNamespace ='urn:Easy'] / wsdl:portType [@ name ='EasyPort'] path \ Service References \ serviceTest \ Reference.svcmap
我不知道该怎么做。我已经查看了这个问题What does this WCF error mean: "Custom tool warning: Cannot import 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>
答案 0 :(得分:1)
WSDL肯定存在问题。 我有同样的警告。然后我改变了
<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>
到
<portType name="EasyPort">
<operation name="putDkm">
<input message="tns:putDkm"/>
<output message="tns:putDkmResponse"/>
</operation>
<operation name="get">
<input message="tns:get"/>
<output message="tns:getResponse"/>
</operation>
</portType>
(参见命名空间) 之后构建成功,但是没有生成客户端代码。 我不打算解决所有问题,但我建议您首先使用相同的界面创建服务原型,生成其WSDL并将结果与您目前的结果进行比较。
答案 1 :(得分:0)
不知道你是否已经解决了这个问题:(
我尝试使用svcutil.exe来为服务生成代理类。代理没有生成,但给出了一些错误。附件是我在控制台上遇到的错误。 百分之百我相信,这是服务的问题,因为在另一个通过修改服务修复的帖子中发现了类似的问题。查看服务中的代码,您当然可以解决此问题。
答案 2 :(得分:0)
我在项目中的某个时候遇到了同样的问题,显然问题是生成参考文件的文件夹是只读的,因此文件没有被覆盖,请尝试删除该文件夹的只读文件夹属性,整个项目,然后重新打开解决方案。它现在应该成功生成。