Hi

What about good old fashioned regular expression? ;)

That reminds me, do we have a nice expression for this in Camel to use with the 
transform?

BTW: Check out Jonathans new unit test and you can see that you can use Camel 
directly with xquery.


Med venlig hilsen
 
Claus Ibsen
......................................
Silverbullet
Skovsgårdsvænget 21
8362 Hørning
Tlf. +45 2962 7576
Web: www.silverbullet.dk
-----Original Message-----
From: raulvk [mailto:[EMAIL PROTECTED] 
Sent: 11. september 2008 19:45
To: camel-user@activemq.apache.org
Subject: Re: JBI Wrapper


Hi,

Thanks for the reply.

Is there a way of doing it without having to construct an XSLT sheet + the
Saxon SU? By using XPath to SELECT the node-set that I want

Thanks.


janstey wrote:
> 
> You can do this with the camel-saxon component. I've added a similar test
> at
> 
> http://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryTransformTest.java
> 
> raulvk wrote:
>> Hi,
>>
>> I am using Camel to control the flow of validation, transformation and
>> routing tasks that are applied to messages entering via ServiceMix CXF's
>> Binding Component. The CXF consumer endpoint sends the message
>> straightaway
>> to Camel.
>>
>> When validating the incoming message, I realized that it is surrounded by
>> the <jbi:message> wrapper.
>> How can I get rid of it so as to send the ACTUAL XML message to Camel's
>> validator?
>>
>> I have tried the following:
>>
>>   -   .setBody().xpath("//jbi:message/jbi:part/can:IncomingMessage",
>> m).to("validator:file:///<schemaLocation>")
>>
>>     AND
>>   .   .transform().xpath("//jbi:message/jbi:part/can:IncomingMessage",
>> m).to("validator:file:///<schemaLocation>")
>>
>> m is bound to a HashMap containing the NameSpace mappings.
>>
>> However, the result is always an empty XML Body, which provokes an
>> exception
>> at the Validator.
>>
>> Is there an easy way of EXTRACTING the XML payload?
>>
>> Thank you.
>>   
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/JBI-Wrapper-tp19439139s22882p19440442.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to