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.
