我想用骡子发布我的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>
但在粗体行中,我有这样的错误
元素:代理-服务不允许成为元素HTTP的子元素
发布于 2013-01-14 15:28:24
Mule显示了嵌入元素的错误(这是一个错误),但是如果名称空间声明正确,配置看起来很好并运行
https://stackoverflow.com/questions/14313694
复制相似问题