我必须为工作的php soap 服务开发一个.NET API,但我只有一个WSDL 文件,它指定了服务属性。
当我尝试在 Visual Studio 中使用 WSDL 文件进行服务引用时,它不起作用,出现错误:
"响应消息的内容类型 text/plain 与绑定的内容类型不匹配 (application/soap+xml; charset=utf-8)。如果使用自定义编码器,请确保正确实现 IsContentTypeSupported 方法。 "
当我在 Visual Studio 中打开 WSDL 时,intellisense 的 <types> 中的 <xs:sequence> 有问题,它说:“未定义命名空间前缀 'xs' ” - 可能这里有问题,但我不会说话WSDL....
这是 WSDL 文件:
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="ProtopmailApiWorld"
targetNamespace="urn:ProtopmailApiWorld"
xmlns:tns="urn:ProtopmailApiWorld"
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/">
<types>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:API">
<xsd:complexType name="arrayOfStrings">
<xs:sequence>
<xs:element name="TheStringValue" type="xs:string" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xsd:complexType>
<xsd:element name="outResponse" type="xsd:string" />
</xsd:schema>
</types>
<message name="ApiSoap">
<part name="params" type="tns:arrayOfStrings" />
</message>
<message name="ApiSoapResponse">
<part name="return" type="tns:outResponse" />
</message>
<portType name="APIPort">
<operation name="ApiSoap">
<input message="tns:ApiSoap" />
<output message="tns:ApiSoapResponse" />
</operation>
</portType>
<binding name="APIBinding" type="tns:APIPort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="ApiSoap">
<soap:operation soapAction="urn:ApiSoapAction" />
<input>
<soap:body use="encoded" namespace="urn:API" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body use="encoded" namespace="urn:API" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
</binding>
<service name="ApiSoapService">
<port name="APIPort" binding="tns:APIBinding">
<soap:address location="https://website/api/soap.php" />
</port>
</service>
谢谢