Re: regex pattern derived from property file

2015-07-13 Thread Nadtech
Well... I tried a different approach which worked, then decided to revert my code back to ${in.body} regex ${properties:version1.regex}

Re: regex pattern derived from property file

2015-07-13 Thread Nadtech
I created a camel.properties file and added the following entries: version1.regex='^1.00(.)+' version1.value=1.00 The I added a wiretap **${properties:version1.regex} and the output was as expected: '^1.00(.)+' For some reason, stil

regex pattern derived from property file

2015-07-10 Thread Nadtech
I set up the property configurer using jasypt: I have the following simple expression in my Spring route: ${in.body} regex '^1.00(.)+' I placed a regex pattern entry in the property file as follows: regex.pattern='^1.00(.)+' Tried a couple of way

Re: Using the alternativeBodyHeader

2015-07-06 Thread Nadtech
I made some modifications to my code. (1) I added alternativeBodyHeader=CamelMailAlternativeBody to: and then (2) I changed: to

Using the alternativeBodyHeader

2015-07-02 Thread Nadtech
I'm new to camel ... Trying to send a multipart/alternative (text/plain and text/html) using Spring, Camel, and Velocity. In my route I have the following snippet: