Hi,

This worked. Thank you!

--
Jari

-----Original Message-----
From: Zoran Regvart [mailto:zo...@regvart.com] 
Sent: 15. marraskuuta 2018 10:46
To: users@camel.apache.org
Subject: Re: Passing properties from Camel to Java bean causes plus sign to be 
replaced with space

Hi Jarni,
yeah my mistake, sorry about that, RAW should be used for the whole endpoint 
property value, try with:

.to("bean:ProcessExcelFile?method=RAW(processExcel({{file.name.starts}}))

zoran
On Tue, Nov 13, 2018 at 1:38 PM Pakarinen, Jari <jari.pakari...@orion.fi> wrote:
>
> Hi,
>
> Thanks for the suggestion. I did not get it to work. I tried these:
>
> RAW('{{file.name.starts}}')
> RAW({{file.name.starts}})
> 'RAW({{file.name.starts}})'
>
> And having the RAW() in the properties like this:
>
> file.name.starts = RAW(my value with + sign)
>
> In all the cases the text RAW(...) was seen in the log that was written from 
> the Bean, as if it was just processed as text.
>
> --
> Jari
>
>
> -----Original Message-----
> From: Zoran Regvart [mailto:zo...@regvart.com]
> Sent: 13. marraskuuta 2018 13:02
> To: users@camel.apache.org
> Subject: Re: Passing properties from Camel to Java bean causes plus 
> sign to be replaced with space
>
> Hi Jari,
> try using RAW[1], something like:
>
> .to("bean:ProcessExcelFile?method=processExcel('RAW({{file.name.starts
> }}')")
>
> zoran
>
> [1] 
> https://github.com/apache/camel/blob/master/docs/user-manual/en/faq/ho
> w-do-i-configure-endpoints.adoc#configuring-parameter-values-using-raw
> -values-eg-such-as-passwords
>
> On Tue, Nov 13, 2018 at 11:05 AM, Pakarinen, Jari <jari.pakari...@orion.fi> 
> wrote:
> > Hi,
> >
> > I have code that passes Java properties value that contains a + sign to 
> > Java bean (as a string). The plus sign is replaced with a space when 
> > inspected in the bean. But if I log the contents of the property inside 
> > from() ... .end() the plus sign is shown.
> >
> > Example:
> >
> > from("file://..")
> >     .to("bean:ProcessExcelFile?method=processExcel('{{file.name.starts}}')
> >     .log("{{file.name.starts}}")
> > .end();
> >
> > In the example {{file.name.starts}} is the property that contains the plus 
> > sign. Line .log("{{file.name.starts}}") will show the plus sign in the log 
> > correctly.
> >
> > But when reaching the processExcel method the plus sign has been replaced 
> > with a space. Any idea why this is happening and what could be done to 
> > prevent it ?
> >
> > I tried reading a properties file with just Java code and the + sign is 
> > showing correctly.
> >
> > Camel 2.22.1
> >
> > King Regards,
> > Jari
> >
>
>
>
> --
> Zoran Regvart



--
Zoran Regvart

Reply via email to