0

我想在 MULE 中发布我的 WSDL 并使用以下代码:

<flow name="cxfProxy">
<http:inbound-endpoint
      address="http://localhost:8080/fed-ach"
      exchange-pattern="request-response">
    **<cxf:proxy-service
        wsdlLocation="http://wsf.cdyne.com/WeatherWS/Weather.asmx?wsdl"
        namespace="http://wsf.cdyne.com/"
        service="FedACH"
        payload="body" />**
</http:inbound-endpoint>
<copy-properties propertyName="SOAPAction" />
<http:outbound-endpoint
      address="http://wsf.cdyne.com/WeatherWS/Weather.asmx"
      exchange-pattern="request-response">
    **<cxf:proxy-client payload="body" />**
</http:outbound-endpoint>

但是用粗体线我有这个错误

元素:Proxy-Service 不允许是元素 HTTP 的子元素

4

1 回答 1

0

Mule Studio 显示嵌入元素的错误(这是一个错误),但您的配置看起来很好并且运行提供的命名空间被正确声明

于 2013-01-14T15:28:24.953 回答