不支持SOAP编码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不支持SOAP编码相关的知识,希望对你有一定的参考价值。

我有WSDL url喜欢以下格式,这似乎是正确的。在终端中使用wsimport进行解析后我得到一个错误:

从终端运行:

tux-world@alachiq:~/Desktop/Project/java > wsimport -keep -s wsdl/ example.com/wsdl/wsdl.php?wsdl
parsing WSDL...


[ERROR] "Use of SOAP Encoding is not supported. 
SOAP extension element on line 59 in example.com/wsdl/wsdl.php?wsdl has use="encoded" "


        Failed to parse the WSDL.

解析的WSDL:

<?xml version="1.0" encoding="ISO-8859-1"?>
<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:tsmswsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:tsmswsdl">
<types>
<xsd:schema targetNamespace="urn:tsmswsdl"
>
 <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
 <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
 <xsd:complexType name="outGetMessages">
  <xsd:complexContent>
   <xsd:restriction base="SOAP-ENC:Array">
    <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="xsd:string[]"/>
   </xsd:restriction>
  </xsd:complexContent>
 </xsd:complexType>
</xsd:schema>
</types>
<message name="GetMessagesRequest">
  <part name="user" type="xsd:string" />
  <part name="pass" type="xsd:string" />
  <part name="idend" type="xsd:int" />
  <part name="count_request" type="xsd:int" /></message>
<message name="GetMessagesResponse">
  <part name="return" type="tns:outGetMessages" /></message>
<message name="login_checkRequest">
  <part name="user" type="xsd:string" />
  <part name="pass" type="xsd:string" /></message>
<message name="login_checkResponse">
  <part name="return" type="tns:outGetMessages" /></message>
<message name="send_smsRequest">
  <part name="user" type="xsd:string" />
  <part name="pass" type="xsd:string" />
  <part name="sms_number" type="xsd:string" />
  <part name="mobile" type="xsd:string" />
  <part name="msg" type="xsd:string" />
  <part name="send_date" type="xsd:string" /></message>
<message name="send_smsResponse">
  <part name="return" type="tns:outGetMessages" /></message>
<portType name="tsmswsdlPortType">
  <operation name="GetMessages">
    <documentation>Get specific user info</documentation>
    <input message="tns:GetMessagesRequest"/>
    <output message="tns:GetMessagesResponse"/>
  </operation>
  <operation name="login_check">
    <documentation>Get specific user info</documentation>
    <input message="tns:login_checkRequest"/>
    <output message="tns:login_checkResponse"/>
  </operation>
  <operation name="send_sms">
    <documentation>Get specific user info</documentation>
    <input message="tns:send_smsRequest"/>
    <output message="tns:send_smsResponse"/>
  </operation>
</portType>
<binding name="tsmswsdlBinding" type="tns:tsmswsdlPortType">
  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  <operation name="GetMessages">
    <soap:operation soapAction="urn:tsmswsdl#GetMessages" style="rpc"/>
    <input><soap:body use="encoded" namespace="urn:tsmswsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
    <output><soap:body use="encoded" namespace="urn:tsmswsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
  </operation>
  <operation name="login_check">
    <soap:operation soapAction="urn:tsmswsdl#login_check" style="rpc"/>
    <input><soap:body use="encoded" namespace="urn:tsmswsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
    <output><soap:body use="encoded" namespace="urn:tsmswsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
  </operation>
  <operation name="send_sms">
    <soap:operation soapAction="urn:tsmswsdl#send_sms" style="rpc"/>
    <input><soap:body use="encoded" namespace="urn:tsmswsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
    <output><soap:body use="encoded" namespace="urn:tsmswsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
  </operation>
</binding>
<service name="tsmswsdl">
  <port name="tsmswsdlPort" binding="tns:tsmswsdlBinding">
    <soap:address location="example.com/wsdl/wsdl.php"/>
  </port>
</service>
</definitions>
答案

为了消除这个问题是否有答案的含糊不清,我发布了@Roman Vottner评论的答案:

JAX-WS的第2版不支持rpc / encoded。如果您控制Web服务,请尝试将rpc / encoded更改为document / literal。

建议读数:

  1. link 1
  2. link 2
  3. link 3
  4. link 4
  5. link 5

以上是关于不支持SOAP编码的主要内容,如果未能解决你的问题,请参考以下文章

Go 上的 WSDL/SOAP 支持?

Rest-Assured api 是不是支持 SOAP

php SOAP 响应编码问题

仅在SOAP客户端上修复-内容类型不匹配

《安富莱嵌入式周报》第279期:强劲的代码片段搜索工具,卡内基梅隆大学安全可靠C编码标准,Nordic发布双频WiFi6 nRF7002芯片

PayPal SOAP API - 不支持版本