Ok first a little background: We do convert AMQP message to JMS messages, but by default we convert them in a way that provides the best AMQP fidelity for when your sending with AMQP and receiving with AMQP.
There are 3 basic conversion strategies we support: raw - Wraps the bytes of the AMQP message into a JMS BytesMessage. jms - Maps headers of the AMQP message to JMS message headers and maps the body of the AMQP message to JMS body. native - Wraps the bytes of the AMQP message into a JMS BytesMessage and also maps the headers of the AMQP message to headers on the JMS message. By default we use the 'native' conversion strategy so that you can still use JMS selectors against the message but you don't 'loose' any of fidelity in the original AMQP message. Q1: If you want messages converted to JMS TextMessages you should add the 'transformer=jms' query option to the AMQP transport's configuration. Q2: Yes Q3: Yes On Thu, Feb 21, 2013 at 12:24 PM, Steve.V. <[email protected]> wrote: > Q1: When an AMQP client puts a text message on a destination, does it get > converted into a JMS TextMessage? > > Q2: Can an AMQP client get a JMS TextMessage off of an ActiveMQ > destination? > > I ask those questions because I wonder if the following steps are possible: > 1. AMQP client puts a text message on a destination. > 2. A JMS or HTTP/REST client gets the message off of the queue. > 3. The JMS or HTTP/REST client puts a "TextMessage" response on a > destination. > 4. The AMQP client gets the text response off of the destination. > > Q3: Is that a valid scenario? > > Thanks in advance, > Stephen Vincent > > > > ----- > Stephen Vincent > -- > View this message in context: > http://activemq.2283324.n4.nabble.com/Questions-about-AMQP-support-in-release-5-8-0-tp4663895.html > Sent from the ActiveMQ - User mailing list archive at Nabble.com. > -- ** *Hiram Chirino* *Engineering | Red Hat, Inc.* *[email protected] <[email protected]> | fusesource.com | redhat.com* *skype: hiramchirino | twitter: @hiramchirino<http://twitter.com/hiramchirino> * *blog: Hiram Chirino's Bit Mojo <http://hiramchirino.com/blog/>*
