I’ve got, what I think, is a working Camel route in Java and I’m trying to confirm that it is sending messages. I was hoping I could use Pidgin to confirm this. Camel is running within ServiceMix.
The Camel route looks very similar to this (from the apache site):
from("timer://kickoff?period=10000").
setBody(constant("I will win!\n Your Superman.")).
to("xmpp://superman@jabber.org/joker@jabber.org?password=secret");
where superman and joker are respective usernames and ‘jabber.org’ is replaced with my local IP where I have OpenFire running. I had hoped a message window would pop up from Pidgin with the message text but that doesn’t seem to be the case.
Is this an appropriate way to test my route or should I consider an alternative mean?
Figured it out.
I noticed a plugin called “Monitoring Service” and installed it. I’m seeing messages passing between users now.