0

在下面的 mule 流程中,我使用 xpath 来决定需要将消息发送到哪个队列。然而,xpath 表达式返回 false,即使 XML 具有 tc="121"。你能告诉我我做错了什么吗?

下面是 XPath 评估的 mule 流和 XML。

骡流:

<flow name="ProcessXMLRequest">
    <jms:inbound-endpoint exchange-pattern="one-way" queue="mq.xml.request" />
    <logger message="XML payload is #[payload]" level="INFO" />
    <choice>
        <when expression="/TXLife/TXLifeRequest/TransType/@tc='121'"
            evaluator="xpath">
            <jms:outbound-endpoint queue="mq.121.request.apps" />
        </when>
        <when
            expression="/TXLife/TXLifeRequest/TransType/@tc='1122'"
            evaluator="xpath">
            <jms:outbound-endpoint queue="mq.1122.request.apps" />
        </when>
        <otherwise>
            <jms:outbound-endpoint queue="mq.error"/>
        </otherwise>
    </choice>
</flow>

XML:

<TXLife xmlns:ns2="http://abc.com/services/mvi" xmlns="http://ACORD.org/Standards/Life/2">
    <TXLifeRequest PrimaryObjectID="Holding_1">
        <TransType tc="121">121</TransType>
        <TransMode tc="2">2</TransMode>
    </TXLifeRequest>
</TXLife>
4

1 回答 1

3

这是一个命名空间问题:您需要配置http://ACORD.org/Standards/Life/2命名空间并在 XPath 表达式中使用它。

在 Mule 中,这是通过命名空间管理器以如下方式实现的:

<mulexml:namespace-manager>
  <mulexml:namespace prefix="life2" uri="http://ACORD.org/Standards/Life/2"/>
</mulexml:namespace-manager>
于 2012-07-09T20:15:30.120 回答