<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<route id="route1" xmlns="http://camel.apache.org/schema/spring">
<from uri="file:src/data?noop=true"/>
<choice id="choice1">
<when id="when1">
<xpath>/person/city = 'London'</xpath>
<log message="UK message" id="log1"/>
<to uri="file:target/messages/uk" id="to1"/>
</when>
<otherwise id="otherwise1">
<log message="Other message" id="log2"/>
<to uri="file:target/messages/others" id="to2"/>
</otherwise>
</choice>
</route>