On Mon, Aug 17, 2009 at 12:59 PM, ELY<[email protected]> wrote: > > Wow! That was quick. Thanks man, didn't know how generous camel-users are. > > What I really want to do is more on the server side. I wonder if there's a > lower level way of processing stanzas such as IQ, Message and Presence. I am > thinking of overriding methods. >
Camel uses the Smack API under the belt so whatever you can do with that you should be able to do in Camel. You can get hold of it the Smack Message from MmpMessage xmppMessage = (XmpMessage) exchange.getIn(); Message smackMessage = xmpMessage.getMessage(); > > Claus Ibsen-2 wrote: >> >> Hi >> >> Welcome to the Camel ride. >> >> Yes Camel have a XMPP component >> http://camel.apache.org/xmpp >> >> There are some basic examples/snippet on that page. >> >> >> And someone tested it with Groovy and wrote a little blog how to talk to >> gtalk >> http://www.andrejkoelewijn.com/wp/2009/02/28/groovy-and-grape-easiest-way-to-send-gtalk-message-with-apache-camel/ >> >> Its the same for regular Java. >> >> >> On Mon, Aug 17, 2009 at 11:47 AM, ELY<[email protected]> wrote: >>> >>> Right now I already have a server application running with an embedded >>> ActiveMQ Broker. This application uses my self-made DB for users and >>> rooms. >>> This server communicates well with clients using JMS. >>> >>> Now, for interoperability and standardisation, I want to use XMPP for >>> communication. I believe this can be done with ActiveMQ and Camel. Does >>> anybody knows how? Please help. >>> >>> Thanks. >>> -- >>> View this message in context: >>> http://www.nabble.com/ActiveMQ%2BCamel%2BXMPP-tp25003969p25003969.html >>> Sent from the Camel - Users mailing list archive at Nabble.com. >>> >>> >> >> >> >> -- >> Claus Ibsen >> Apache Camel Committer >> >> Open Source Integration: http://fusesource.com >> Blog: http://davsclaus.blogspot.com/ >> Twitter: http://twitter.com/davsclaus >> >> > > -- > View this message in context: > http://www.nabble.com/ActiveMQ%2BCamel%2BXMPP-tp25003969p25004727.html > Sent from the Camel - Users mailing list archive at Nabble.com. > > -- Claus Ibsen Apache Camel Committer Open Source Integration: http://fusesource.com Blog: http://davsclaus.blogspot.com/ Twitter: http://twitter.com/davsclaus
