I am sending the messages to Topic using oracle.jms.AQjmsFactory. The messages are stored in DB topic . Using DefaultMessageListenerContainer , the messages are being listen .But the problem is the messages are not dequeueing or deleting from the topic i.e., the messages are stucked in topic.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

How do you know they're stuck in the topic? Do you get the same message delivered to your listener multiple times, or do you mean it's still in the database?

Remember, messages on a Topic are supposed to be delivered to multiple consumers, so it shouldn't be too much of a surprise if the message is still hanging around after being delivered to your listener - it might think there are other clients still to be delivered to.

link|improve this answer
I mean it is still in the database. But once the message is listened,I don't want that message to be in data base.It should be removed. – sanjana Feb 11 '10 at 8:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.