Creating message consumers

Message consumers can be either a message queue or topic. You can create message consumers two ways. The recommended way is to use EAServer Manager to create and configure message queues and topics, so their configuration properties are stored in a database. See Chapter 8, “Setting up the Message Service,” in the EAServer System Administration Guide for information on how to do this. You can also create message queues and topics programmatically; for example:

void create(MESSAGE_QUEUE, “QueueName”);
void create(MESSAGE_TOPIC, “TopicName”);

See $JAGUAR/html/ir/CtsComponents__MessageService.html for more information on configuring queues and topics within your application.