我想公開騾子及其工作的WebService。在Mule上暴露WebService
- 我的問題是,我不確定這是暴露Web服務的正確方法。
- 正如我希望能夠看到我的騾子HTTP入站端點WSDL即
XXX:8084/HelloService的WSDL
,請注意,實際服務端口8085運行。
<flow name="WS_In" doc:name="WS_In">
<http:inbound-endpoint address="http://localhost:8084/HelloService" exchange-pattern="request-response" doc:name="HTTP">
<cxf:proxy-service wsdlLocation="http://localhost:8085/HelloService?WSDL" payload="envelope" namespace="http://example.org/HelloService" service="Hello"/>
</http:inbound-endpoint>
<http:outbound-endpoint exchange-pattern="request-response" host="localhost" port="8085" doc:name="HTTP" path="test"/>
</flow>
感謝您的答覆和鏈接大衛,是我只是_proxying_它。 – 2013-02-12 19:14:17