skyscreamer / nevado

A JMS driver for Amazon SQS.

Home Page:http://nevado.skyscreamer.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JMS 1.1 - Section 2.6.1 - Developing a JMS Client

carterpage opened this issue · comments

A typical JMS client executes the following JMS setup procedure:

  • Use JNDI to find a ConnectionFactory object
  • Use JNDI to find one or more Destination objects
  • Use the ConnectionFactory to create a JMS Connection with message delivery inhibited
  • Use the Connection to create one or more JMS Sessions
  • Use a Session and the Destination to create the MessageProducers and MessageConsumers needed
  • Tell the Connection to start delivery of messages

The issue here is to be able to support this workflow. This might breakout into subtasks.