Any real JAVA AMQP examples to understand term 'wire

I am new to working with AMQP and looking into platform neutral way to work with messaging, where we have decided to work with AMQP in Java application. But as I read AMQP is wire level protocol and it delivers the middleware equivalent of HTTP at link http://www.amqp.org/resources/developer-faqs and like HTTP(GET, POST, PUT, DELETE - only I am assuming, not sure exactly) it has standard message types with reference to section AMQP performatives and the link protocol at http://en.wikipedia.org/wiki/Advanced_Message_Queuing_Protocol and also something of request-response session. Concepts like Exchange and routing key with binding queue at http://www.wmrichards.com/amqp.pdf But when I search across examples with AMQP-JAVA all I come across are normal JMS API examples with ActiveMQ or QPid where JMS concepts are used like destination, connection, session etc. Pardon me if I am asking a very generic question, but I really want to understand AMQP in JAVA with demonstrates the keyword wire-level protocol Please suggest some examples or references or let me know if I am missing altogether something here

Thanks


Thanks all for responses, comments. I now understand that "wire level protocol" is something like HTTP which is implemented by AMQP clients. I was confused by watching some AMQP client examples of 0-9-1 and some of 1.0. But going through AMQP specifications, 0-9-1 and 1.0 which have been largely changed, Rabbit MQ examples, and Active MQ AMQP examples I figured out to some extent.

AMQP being wire level protocol, it facilitates any broker implementations to work with any client implementations as long as they both adhere to AMQP protocol for communication.

References http://hintjens.com/blog:28

http://it.toolbox.com/blogs/open-source-smb/whats-the-future-of-amqp-44450

http://kellabyte.com/2012/10/20/clarifying-amqp/

链接地址: http://www.djcxy.com/p/34122.html

上一篇: 带有RabbitMQ客户端认证异常的QPID代理

下一篇: 任何真正的JAVA AMQP例子来理解术语“线”