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