Sending Messages REST Endpoints

Sending Messages

Clients send messages by using a session to create a producer.  A session can have multiple producers.  Producers persist until they are closed, or the session in which they were created is closed.

A producer defines the default characteristics of messages sent through the producer.  A producer can specify the destination to which all messages are sent, how sent messages should be stored in the service, and how long sent messages are stored in the service before they expire.

Create a Producer
Method: put
Path: /producers/{producerName}
Delete a Producer
Method: delete
Path: /producers/{producerName}
Send a Message
Method: post
Path: /producers/{producerName}/messages
Set Properties of a Producer
Method: post
Path: /producers/{producerName}