Log in to follow, share, and participate in this community.
Thread Message headers between routs
Message headers between routsI am trying to figure out the best place to store data during a route. Should it be on the exchange as a property or on the in/out message? Currently we are storing information -in time to the route -m...
Error using custom language in filterThe underlying issue that I am attempting to resolve is to be able to dynamically provide an xpath in a predicate as shown below: However, I get the following error: Excepti...
Thread does replaceFromWith work with CamelBlueprintTestSupport?
does replaceFromWith work with CamelBlueprintTestSupport?Hi, The use of replaceFromWith in unit tests described here: http://camel.apache.org/advicewith.html Does not seem to work when using blueprint, i.e. extending CamelBlueprintTestSupport. I hav...
Using OGNL in camelHi all, I was wondering if it will be possible to access the property of an object. The name of the property is known at run time but the object instance is not. Is there any shorthand that I can use t...
Type converter feature requestCurrently the following works: public class TracePointTypeConverterTest extends CamelTestSupport { @Test public void lookup() { ...
Thread Removing inflight exchanges from a camel route
Removing inflight exchanges from a camel routeHi Guys, Is there a way to remove inflight exchanges from a route? Seems like there are exchanges stuck in my route and I don't want to restart the server. Is there any mbean operation that I could use...
Stream inline processing, Is it possible?hi experts, I'd like to do stream inline processing as part of Camel route. Something like from("stream:secureURL").beanRef("myProcess").to("stream:anotherSecureURL"); this is like a proxy to process...
Thread RecipientList annotation on an Interface does not work
RecipientList annotation on an Interface does not workHi all, I was wondering why the Recipient annotation on my interface like below does not work: @RecipientList public String[] route(Exchange exchange, @XPath(value="//Service/text()", resultType=Strin...
Thread File endpoint: how to customize the doneFileName ?
File endpoint: how to customize the doneFileName ?Greetings, In a file endpoint, upon file reception, I need to customize the name of the created done file by applying a regex on the input file name. How may I do that knowing that the doneFileName option only...
Thread Problem Applying XSLT to SOAP Faults from CXF (payload) Producer
Problem Applying XSLT to SOAP Faults from CXF (payload) ProducerI've set-up a route that consumes simple XML and produces SOAP messages using CXF (dataFormat=payload). I use XSLT to translate between the simple XML and the SOAP XML. It works as expected for successful ...
Jetty Client Certificate Authenticationhow should I configure servicemix servicemix-4.4.1-fuse-06-03 to enable client certificate authentication? following configuration doesn't work for me: any idea what should I hange? this is my org.ops4j.pax....
LDAP connection over SSLHello, how can I use camel:ldap connection over ssl? How can I specify the keystore and the password to the certificate for the ssl communication? Thank you, Radomir
Newbie dummy questionsHi Since yesterday I'm trying to get into the Fusesource products, most especially fuse-fabric. My first impression so far? Kudos Just two quick questions: - I don't find any forum specific fo...
A design questionGreetings, We have the following very specific situation in a data-loading process. We receive a text file containing a list of files to be processed. these files are supposed to be already available on the fi...
Thread Can't camel:run route working when deployed on the server
Can't camel:run route working when deployed on the serverGreetings, I have the following route: It tries to pick-up an XML file and to validate it against its associated XSD. Deploying it on the Karaf server works but trying to run ...
Thread expressions within HTTP uri not being resolved
expressions within HTTP uri not being resolvedI am trying to call a rest service with the following: <to uri="http://localhost/api/save?param1=$&param2=$" />
but the $ and $ expressions are not being resolved as I would expect and can see w...