I need to receive an update published to a JMS topic, convert it to a XMPP packet (Presence packet or PubSub packet) and route it to an XMPP endpoint.
I am using ActiveMQ as JMS provider and Apache camel as routing engine. given below is my route in Camel (to make things simple I read from system.in instead of a jms topic):
from("...
I'm trying to create an Apache Camel route that sends a jms message to a topic and if it does not receive a reply within a certain amount of time it starts a route using Spring DSL.
The problem I am having is that it appears the foTopic call is asynchronous. I expect it to block and wait for a message or until the timeout is reached,...
Hey,
If we have Apache Camel why to use other solutions like Apache ServiceMix and Mule?
Is there something Apache Camel can't do comparing to these products?
When to use Mule/ServiceMix and when to use Camel?
...
We use Message or Exchange to set the outbound message . the only method these provide is
exchange.getOut.setBody();
if i do something like setBody(new Object())..it doesn't work
so how do we send java objects via camel exchange.
...
my camel route is given below
<camelContext id="camel" xmlns="http://camel.apache.org/schema/spring" >
<route>
<from uri="bean:SendClass?method=send" />
<to uri="jms:MyQueue" pattern="InOnly" />
</route>
<route>
<from uri="jms:MyQueue" />
<to uri="bean:recvClass?method=recv" />
</route>
</camelCo...
What is the difference between the following methods for sending an outbound message using camel exchange :
e.getIn().setBody(body)
e.getOut().setBody(body)
e.setOut(out);
and what exactly does the InOut Exchange pattern do ?
i mean i know it's the default ExchangePattern and the caller expects a reply ..how do i set the rep...
First of all thanks to folks who are currently involved in the development of Camel, I am grateful for all the hard work they have put in.
I am looking for some design advice.
The architecture is something like this:
I have a bunch of Java classes which when instantiated are required to connect to each other and send messages using Ap...
So, who could advise some good Apache Camel routes visual designer?
Would like to know also if there's some really good Apache Camel routes visualizer (saw some maven2 camel visualizer, but it produce weird results).
...
Which maven plugin is used for building an osgi bundle containing camel-routes and some POJO's for deploying inside fuse-servicemix 4.3.0 . i have used pax as well as maven-bundle plugin for deploying into fuse servicemix .i get a lotof error's using these .any other good maven-plugin ?
...