0

朋友们,

RequestID如果属性值不等于,我需要选择消息4。我怎样才能做到这一点。

我的xpath selector配置如下:

<int-xml:xpath-selector evaluation-result-type="boolean">
    <int-xml:xpath-expression expression="//ns2:RequestID">
        <map>
            <entry key="ns2" value="http://www.test.com/Schema/schema2" />
        </map>
    </int-xml:xpath-expression>
</int-xml:xpath-selector>
4

1 回答 1

1

我已经通过使用以下表达式解决了这个问题:

expression="//ns2:RequestID[text() != '4']"
于 2013-09-18T10:08:47.830 回答