Mikita Herasiutsin
Mikita Herasiutsin

Reputation: 118

Send messages to queues in JBoss 6 through Admin Console

Is it possible to send messages to JBoss 6 through Admin Console? There are only remove/expire/move/send to dead letter channel/pause/reset and so on operations in control tab but nothing about sending message manually. Also jms:queue is used if matters.

Upvotes: 1

Views: 1032

Answers (1)

JGlass
JGlass

Reputation: 1467

You can view them - but you cannot manually send them, a consumer will pick them off the queue when a consumer becomes available. Logically it would be too difficult to manually send them just because messages can be of types text, bytes and an object. Text would be fairly easy but the rest would get progressively more difficult. I may have misunderstood your manual sending however, e.g. did you want to create and send or just trigger a send. Surely though you could write your own functionality and drop it into the JBoss Admin Console to manually send those specific types of messages though.

Upvotes: 1

Related Questions