我想知道如何通过Mule使用Axis2来运行web服务?
我的Mule版本是3.3.0。
这是Example_RMITest.xml
<http:inbound-endpoint exchange-pattern="request-response" name="${serviceID}"
host="${proxyHostname}" port="${proxyPort}" path="${serviceID}"
encoding="UTF-8" doc:name="入站HTTP" />
<http:outbound-endpoint exchange-pattern="request-response" address="http://192.168.98.48:9080/JKService/webservices/JKService?wsdl"
encoding="UTF-8" doc:name="出站HTTP" />
发布于 2013-09-27 22:27:42
在Mule 3.x中已经放弃了对Axis的支持。
Mule现在专门使用CXF来公开和使用web服务。
https://stackoverflow.com/questions/19046902
复制相似问题