我有以下问题:
开发一个基于WSDL的代理,它并行调用几个不同的SOAP Web服务并返回响应:
<inSequence>
<log level="full"/>
<iterate xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:agg="http://www.test.ro/aggregate"
preservePayload="true"
attachPath="//soapenv:Body"
expression="//agg:AggregateRequest/agg:messageRequest">
<target>
<sequence>
<property name="messageId"
expression="//soapenv:Body/agg:messageRequest/agg:messageId[node()]"/>
<property name="endpoint"
expression="//soapenv:Body/agg:messageRequest/agg:endpoint[node()]"/>
<xslt key="CleanPayload" source="/"/>
<send>
<endpoint key="MirrorEndpoint"/>
</send>
</sequence>
</target>
</iterate>
</inSequence>
<outSequence>
<property name="resp" scope="default">
<agg:AggregateResponse xmlns:agg="http://www.test.ro/aggregate"/>
</property>
<aggregate>
<completeCondition timeout="10">
<messageCount min="-1" max="-1"/>
</completeCondition>
<onComplete xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
expression="$body/*"
enclosingElementProperty="resp">
<log level="full"/>
<send/>
</onComplete>
</aggregate>
</outSequence>
我的挑战是:
我知道这可能是一个新手问题,但我很难找到关于这个主题的好教程。
谢谢
答案 0 :(得分:1)
在In Sequence中设置属性(范围默认值)时,可以在Out Sequence中找回它的值。
在In Sequence中设置此属性:
<property name="IN_MESSAGE_ID" expression="get-property('MessageID')"/>
您可以在Out Sequence中使用get-property('IN_MESSAGE_ID')
如果要将消息发送到动态地址,可以设置“To”标题并使用send mediator:
<header name="To" expression="get-property('MY_DESTINATION')"/>
<send/>
答案 1 :(得分:0)
尝试将messageId设置为HTTP标头属性
<header name="MessageId" value="0001" scope="transport"/>
并在outSequence
中检索此标头<property name="MessageId" expression="get-property('MessageId')"/>
我已经对此进行了测试,因此请对其是否有效提供反馈