作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试开发基于内容的路由 Camel 应用程序。此应用程序将查看文件夹 src/data 以查看是否存在包含节点 <e2d:getOrderDetaiRequest>
的 SOAP 请求文件。 ,然后该文件将被复制到目标/消息,否则文件将被复制到目标/其他。
您知道如何使用 xpath(或任何其他工具)来检查该条件(我更喜欢使用 camel-context.xml 文件)?
这是我的 Camel 语境
<route>
<from uri="file://c:/src/data?noop=true"/>
<choice>
<when>
<xpath>**???????????????????????????**</xpath>
<to uri="file://c:/target/message"/>
</when>
<otherwise>
<to uri="file://c:/target/other"/>
</otherwise>
</choice>
</route>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:e2d="http://www.abc.com/Abc11WS">
<soapenv:Header/>
<soapenv:Body>
<e2d:getOrderDetailRequest>
<actionCode>1234</actionCode>
</..>
</...></...>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:lsr="http://www.abc.com/Abc22WS">
<soapenv:Header/>
<soapenv:Body>
<lsr:getProductDetailsRequest>
<productId>12345</...>
</...></...></...>
最佳答案
当使用 xpath 并且您的 xml 具有 namespace (例如您的 SOAP 消息)时,您也必须在 xpath 表达式中使用 namespace 。
Camel 文档中有一些详细信息:http://camel.apache.org/xpath
通过在 Camel 中使用 XML DSL,您可以直接在 XML 标记中声明命名空间,例如在 camelContext 等中。
<camelContext xmlns="http://camel.apache.org/schema/spring" e2d="http://www.abc.com/Abc11WS">
...
<when>
<xpath>/e2d:getOrderDetailRequest</xpath>
...
关于xpath - 如何在camel-context.xml 中使用xpath 来检查特定节点是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9626285/
我是一名优秀的程序员,十分优秀!