Thanks Claus. Any idea about below query
Another point is incoming request can contain both type of paramters i.e
form paramter and file upload request (in the form of multipart request)
then how come
below configuration checking "?xml" in file parameter not in form parameter?
<route id="NormalizeMessageData">
<from uri="jms:incomingOrders" />
<convertBodyTo type="java.lang.String" />
<choice>
<when>
<simple>${body} contains
'?xml'</simple>
<unmarshal>
<jaxb
contextPath="org.fusesource.camel" />
</unmarshal>
<to uri="jms:orders" />
</when>
<otherwise>
some configuration
</otherwise>
</choice>
</route>
--
View this message in context:
http://camel.465427.n5.nabble.com/Will-web-request-be-intercepted-by-CAMEL-with-this-configuration-tp5750063p5750113.html
Sent from the Camel - Users mailing list archive at Nabble.com.