0

我需要在 Web 服务/SOAP 调用上传递参数。

我在 Anypoint Studio 中使用 Web Service Consumer(需要在 Mule CE - Community Edition 上运行),但我收到以下消息:“不支持超过 1 部分的操作消息”

是否有在 Mule CE 传递参数上调用 Web 服务/SOAP 的表单?

感谢您提供任何帮助/示例!

编辑:

一致评论,我正在测试一个计算器 Web 服务,在 SoapUI 中返回结果 OK,但在 mule 中返回 0。

我正在使用 Set Payload 组件传递参数。我使用 SoapUI 上返回的“xml 请求”设置了该值。

遵循 XML 代码。

<ws:consumer-config name="Web_Service_Consumer1" wsdlLocation="http://www.dneonline.com/calculator.asmx?WSDL" service="Calculator" port="CalculatorSoap12" serviceAddress="http://www.dneonline.com/calculator.asmx" doc:name="Web Service Consumer"/>
<flow name="calculadora-soap-publicoFlow">
    <poll doc:name="Poll">
        <set-payload value="&lt;soap:Envelope xmlns:soap=&quot;http://www.w3.org/2003/05/soap-envelope&quot; xmlns:tem=&quot;http://tempuri.org/&quot;&gt; &lt;soap:Header/&gt; &lt;soap:Body&gt; &lt;tem:Add&gt; &lt;tem:intA&gt;3&lt;/tem:intA&gt; &lt;tem:intB&gt;2&lt;/tem:intB&gt; &lt;/tem:Add&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt;" doc:name="Set Payload"/>
    </poll>
    <ws:consumer config-ref="Web_Service_Consumer1" operation="Add" doc:name="Web Service Consumer"/>
    <json:xml-to-json-transformer doc:name="XML to JSON"/>
    <logger level="INFO" doc:name="Logger" message="#[message.payload]"/>
</flow>

问题可能出在哪里?谢谢!

4

1 回答 1

0

我发现它是如何工作的。

我们需要传递 Web Service Consumer,它只是参数,而不是完整的 XML 封装。遵循 Set Payload 的值只是参数:

  <ns0:Add xmlns:ns0="http://tempuri.org/">
     <ns0:intA>1</ns0:intA>
     <ns0:intB>3</ns0:intB>
  </ns0:Add>
于 2016-01-09T16:27:15.483 回答