Hi, I just tested my example with the latest snapshot again (1.3) and it still doesn't work.
<camelContext useJmx="true" xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="xmpp://[EMAIL PROTECTED]/?password=test"/> <to uri="xmpp://[EMAIL PROTECTED]/?login=false&participant=test"/> </route> </camelContext> The test user is online when I run this example, so that's fine. But the message arriving at test is never sent to the test2 user. I would also like a tested example, or feedback that the XMPP transport is not yet fully working. Tijs Robert Thullner wrote: > > Sorry, I did not find this method in the Camel XmppEndpoint source file. > Which version of Camel did you use? > Is there some guide how to send XMPP messges with camel? > > Thanks > Robert > > > -----Ursprüngliche Nachricht----- > Von: Kevin k [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 11. Jänner 2008 21:33 > An: [email protected] > Betreff: Re: XMPP send instant message > > > Dont know if this helps, but > I had this problem too, looking at XmppEndpoint.java, when a packet is > received, the following code is run (inside of the processPacket method): > > InOnly exchange = getExchangeFactory().createInOnlyExchange(); > NormalizedMessage in = exchange.createMessage(); > exchange.setInMessage(in); > marshaler.toNMS(in, packet); > logger.debug("Exchange: " + exchange); > //send(exchange); > > (Note that the last line send(exchange) is commented out. It looks like > this is disabled on purpose. > > > > > Tijs wrote: > > -- > View this message in context: > http://www.nabble.com/XMPP-send-instant-message-tp14072390s22882p14764216.ht > ml > Sent from the Camel - Users mailing list archive at Nabble.com. > > > -- View this message in context: http://www.nabble.com/XMPP-send-instant-message-tp14072390s22882p14784044.html Sent from the Camel - Users mailing list archive at Nabble.com.
