On 8/9/07, Asankha C. Perera <[EMAIL PROTECTED]> wrote: > Hi > > Can someone tell me how I could connect to an external XMPP server > (instead of using the embedded XMPP server that ships with ActiveMQ) and > use the XMPP transport with ActiveMQ
The easiest way is to bridge the two using Camel... http://activemq.apache.org/enterprise-integration-patterns.html http://activemq.apache.org/camel/xmpp.html e.g. add the following to the <camelContext> in the activemq.xml <route> <from uri="xmpp://myhost:port/myroom"> <to uri="activemq:myQueue"/> </route> -- James ------- http://macstrac.blogspot.com/
