Re: Passing Camel Message Headers to File Endpoint

2012-05-31 Thread RadoslavStoyanov
Hi Guys, Thanks a lot for the info and the advices! Regards, Radoslav -- View this message in context: http://camel.465427.n5.nabble.com/Passing-Camel-Message-Headers-to-File-Endpoint-tp5713737p5713780.html Sent from the Camel - Users mailing list archive at Nabble.com.

Passing Camel Message Headers to File Endpoint

2012-05-30 Thread RadoslavStoyanov
Hi, I have next question: Is it possible to pass some Camel Message Headers to File Endpoint? Example: 1. I have jms topic and I set some custom headers in the message 2. I route from that jms topic to file endpoint 3. i consume the message from the file endpoint and I want to consume my custom

RE: Performance issue with Camel JMS publish/subscribe

2011-12-12 Thread RadoslavStoyanov
Hi Sven, Thanks for the hint! We'll investigate further... Thanks once more for the nice assistance! Regards, Rado -- View this message in context: http://camel.465427.n5.nabble.com/Performance-issue-with-Camel-JMS-publish-subscribe-tp5049909p5068422.html Sent from the Camel - Users mailing

RE: Performance issue with Camel JMS publish/subscribe

2011-12-08 Thread RadoslavStoyanov
Hi Sven, Adding the cached factory wrapper increased the performance with 800%! Now I have another issue, when I do threaded send - 10 threads publish to the same endpoint and one consumer - it happens that some of the messages are lost (didn't reach the consumer) - not a big number, but there

RE: Performance issue with Camel JMS publish/subscribe

2011-12-07 Thread RadoslavStoyanov
Hi Sven, Thanks a lot! This explains the current behavior, I'll try the proposed solution and will give you a feedback if the problem is still present or is solved. Regards, Rado -- View this message in context:

Re: Velocity without java

2011-12-07 Thread RadoslavStoyanov
Hi Michael, Here is the content of PartInventoryLow.xsd schema: ?xml version=1.0 encoding=UTF-8? xsd:schema xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:evt=http://namespaces.softwareag.com/EDA/Event; xmlns=http://namespaces.softwareag.com/EDA/WebM/Sample/InventoryMgmt/1.0;

RE: Performance issue with Camel JMS publish/subscribe

2011-12-06 Thread RadoslavStoyanov
Hi Sven, This is code snippet of my publish functionality: Producer producer = producers.get(eventTypeID); if(producer == null) { String inChannel = resolveEventTypeToInChannel(eventTypeID);

RE: Performance issue with Camel JMS publish/subscribe

2011-12-06 Thread RadoslavStoyanov
Sorry I mean producer, not publisher -- View this message in context: http://camel.465427.n5.nabble.com/Performance-issue-with-Camel-JMS-publish-subscribe-tp5049909p5052134.html Sent from the Camel - Users mailing list archive at Nabble.com.

Performance issue with Camel JMS publish/subscribe

2011-12-05 Thread RadoslavStoyanov
Hi, I experience the next problem: Created two Endpoints pointing to same JMS topic. The JMS provider is WmBroker. Used Spring xml descriptor to define the Camel context. The first endpoint is used for publishing, the second for subscribing. I instantiated two of our pub/sub API classes to test