J
Jonathan Allen
The .Net program I am writing needs to use JMS-style topics. Is there a way
to make a MS Message Queue work like a JMS Topic. Or is there a way to
access a JMS Topic (preferable WebLogic 8) from a .Net application.
Requirements:
Multiple listeners on one queue.
All listeners get all messages.
Messages are deleted after all active listeners have read them.
First Attempt
Have messages with a limited TimeToBeReceived value. Use PeekNext
instead of Receive to walk through the queue.
Failed because System.Messaging doesn't expose the PeekNext method
available to VB/C++.
Any suggestions?
Jonathan Allen
to make a MS Message Queue work like a JMS Topic. Or is there a way to
access a JMS Topic (preferable WebLogic 8) from a .Net application.
Requirements:
Multiple listeners on one queue.
All listeners get all messages.
Messages are deleted after all active listeners have read them.
First Attempt
Have messages with a limited TimeToBeReceived value. Use PeekNext
instead of Receive to walk through the queue.
Failed because System.Messaging doesn't expose the PeekNext method
available to VB/C++.
Any suggestions?
Jonathan Allen