Skip to main content
Skip table of contents

Message Browser Support in FioranoMQ

FioranoMQ provides support for message browsing by a durable subscriber registered with the FioranoMQ Server on any topic. A MessageBrowser on a TopicSession using the ClientID and SubscriberID of the concerned subscriber as the arguments can be created.

Once this MessageBrowser is created, it can be used to retrieve all messages that are stored in the FioranoMQ Server for that particular DurableSubscriber. The browser facility works when the concerned Durable Subscriber is passive.

Browser APIs

FioranoMQ provides public APIs for browsing messages on a durable subscriber. The sample code, below, describes how these APIs are used:

For creating a MessageBrowser:

CODE
FioranoMessageBrowser msgBrowser =
((FioranoTopicSession)topicSession).createMessageBrowser(clientID,subID);

For enumerating the messages for this browser:

CODE
Enumeration enum = msgBrowser.getEnumeration();
while(enum.hasMoreElements())
Message msg = (Message)enum.nextElement();
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.