Removing durable subscribers
Is it possible to "purge" durable subscriptions established by JMS clients ? Any APIs available for this ?
Here is the scenrio. My application has a unique ID. The application establishes durable subscribers to a few topics. The uniqe ID is used in the setClientID() of the topic connection. Based on the messages it receives, the application would create more durable subscribers . All the subscribers are
created off of the same topic connection object.
When I "uninstall" the application, I want to "unsubscribe" or "remove" all the subscriptions established by the application. All I know about the application is the Unique ID and I do not know the subscriber id of the individual durable subscribers.
So, my question is, is it possible to "remove" all the subscription created by the application given the client id used in the application ?
TopicSession.unsubscribe() wont work for me because I do not know the subscriber id.
Is there a "Management" API availabe to to this ?

