我对Mule ESB 3.5有一点经验,我发现大多数Mule示例只使用一个参数创建SOAP Web Service。例如,您可以在SOAP Web Service Security示例中看到它。
http://www.mulesoft.org/documentation/display/current/SOAP+Web+Service+Security+Example
所以我有一个问题,在上面的示例中,使用CHOICE流控制后,如何将多参数传递给SOAP Web服务的方法。
有人建议我使用对象数组来传递多个参数,但我仍然没有任何线索。
感谢大卫。我只是试试你的建议。但我认为我应该更新我的问题以使其清楚。
首先,我创建了Web服务
@WebService
public interface Greeter
{
public String greet(String name);
public String welcome( String name1,String name2);
}
然后我有一个用于Web服务配置的控制流程
<flow name="UnsecureServiceFlow" doc:name="UnsecureServiceFlow">
<http:inbound-endpoint address="http://localhost:63081/services/unsecure" exchange-pattern="request-response" doc:name="HTTP Inbound Endpoint"/>
<cxf:jaxws-service serviceClass="com.mulesoft.mule.example.security.Greeter" doc:name="Unsecure service"/>
<component class="com.mulesoft.mule.example.security.GreeterService" doc:name="Greeter Service" />
</flow>
Next is the sub flow using jax-ws client to call the method of web service
<flow name="SecurityClients" doc:name="SecurityClients">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="63080" path="client" doc:name="HTTP Inbound Endpoint"/>
<set-payload value="#[message.inboundProperties['http.query.params']['name']]" doc:name="Set payload with 'name' query param"/>
<set-variable variableName="clientType" value="#[message.inboundProperties['http.query.params']['clientType']]" doc:name="Set clientType"/>
<choice doc:name="Choice">
<when expression="#[clientType == 'unsecure']">
<flow-ref name="unsecure" doc:name="Invoke unsecure sub-flow"/>
</when>
<when expression="#[clientType == 'usernameToken']">
<flow-ref name="usernameToken" doc:name="Invoke usernameToken sub-flow"/>
</when>
<when expression="#[clientType == 'usernameTokenSigned']">
<flow-ref name="usernameTokenSigned" doc:name="Invoke usernameToken Signed sub-flow"/>
</when>
<when expression="#[clientType == 'usernameTokenEncrypted']">
<flow-ref name="usernameTokenEncrypted" doc:name="Invoke usernameToken Encrypted sub-flow"/>
</when>
<when expression="#[clientType == 'samlToken']">
<flow-ref name="samlToken" doc:name="Invoke samlToken sub-flow"/>
</when>
<when expression="#[clientType == 'samlTokenSigned']">
<flow-ref name="samlTokenSigned" doc:name="Invoke samlToken Signed sub-flow"/>
</when>
<otherwise>
<set-payload value="Client type is not supported" doc:name="Client type is not supported"/>
</otherwise>
</choice>
<set-property propertyName="Content-Type" value="text/plain" doc:name="Set response Content-Type"/>
<catch-exception-strategy doc:name="Catch Exception Strategy">
<set-payload value="There has been an Error processing the request" doc:name="Set Payload"/>
<set-property propertyName="Content-Type" value="text/plain" doc:name="Set response Content-Type"/>
</catch-exception-strategy>
</flow>
<sub-flow name="unsecure" doc:name="unsecure">
<cxf:jaxws-client operation="greet" serviceClass="com.mulesoft.mule.example.security.Greeter" doc:name="Unsecure SOAP client" doc:description="Unsecure SOAP client"/>
<http:outbound-endpoint exchange-pattern="request-response" host="localhost" port="63081" path="services/unsecure" doc:name="Invoke unsecure Web Service"/>
</sub-flow>
可以使用该地址来调用greet方法,它只有一个参数。 ?本地主机:63080 /客户clientType =用户名令牌和放大器;名称=约翰 但是,当我将 greet 方法更改为 welcome 方法时,我不知道如何向其传递更多参数或必须更改任何内容,因为有效负载仅包含名称参数
答案 0 :(得分:1)
从远程Web服务WSDL生成JAX-WS 客户端类,并在cxf:jaxws-client
配置元素中使用它们。
在您的情况下,您需要set-payload
在每个when
内,以便创建cxf:jaxws-client
所需的请求对象。
假设您需要为org.saml.SamlToken
案例创建samlToken
对象,您可以这样做:
<set-payload value="#[st=new org.saml.SamlToken();st.field1=message.inboundProperties.field1; ... ; st]" />
在when
之前的flow-ref
中。
PS。您可以使用#[message.inboundProperties.clientType]
代替#[message.inboundProperties['http.query.params']['clientType']]