【发布时间】:2013-12-18 12:37:11
【问题描述】:
我想使用 Mule ESB 作为我的 Web 服务的代理。我是 SOATest 来模拟客户端。 我是初学者,我正在使用 Mule Studio,但我不知道应该使用哪个组件。 我还需要从肥皂请求中获取参数值。 有什么想法吗?
这是我的配置:
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd ">
<flow name="getValidation_FlowFlow1" doc:name="getValidation_FlowFlow1">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8090" path="MyWSService/GetValidation" doc:name="Inbound"/>
<http:outbound-endpoint exchange-pattern="request-response" host="XX.XXX.X.XX" port="8080" path="ws/MyWSService" doc:name="Outbound"/>
</flow>
</mule>
【问题讨论】: