Re: Problems with Virtual Topics

2010-04-01 Thread Shyam Santhanam
James - great thanks for your replies, they were very helpful. James Casey-2 wrote: > > use suppressDuplicateQueueSubscriptions="true" on the network connectors I > normally only see one additional consumer - what is your topology ? > Thanks, I'm definitely gonna try this out. We have a fully

Re: Problems with Virtual Topics

2010-04-01 Thread Shyam Santhanam
There are a few more observations I've made while trying to debug this. We've noticed that sometimes the messages received from the consumer queues have JMSDestination set to the VirtualTopic name, and at other times they have the consumer queue name. As shown earlier, I do have the excludedDestin

Problems with Virtual Topics

2010-03-31 Thread Shyam Santhanam
Hello ActiveMQ experts, I'm facing some difficulty using virtual topics under a network of brokers configuration. Background: We have a network connector that uses a custom DiscoveryAgent to discover other brokers in the network and setup the network connector. Every node has a single broker. W

Re: Cannot receive from Virtual Topic's consumer queue

2009-10-28 Thread Shyam Santhanam
Sorry, nevermind, it works great now. PEBKAH. I was just not starting the connection that I created my queue session out of. -- View this message in context: http://www.nabble.com/Cannot-receive-from-Virtual-Topic%27s-consumer-queue-tp26093937p26096429.html Sent from the ActiveMQ - User mailing

Re: Cannot receive from Virtual Topic's consumer queue

2009-10-28 Thread Shyam Santhanam
What is your broker configuration (so that I may compare it with mine and see what I'm missing)? -- View this message in context: http://www.nabble.com/Cannot-receive-from-Virtual-Topic%27s-consumer-queue-tp26093937p26096214.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Cannot receive from Virtual Topic's consumer queue

2009-10-28 Thread Shyam Santhanam
Joe Fernandez wrote: > > If you activate your consumer after the messages have been published to > the topic, then the messages will not be forwarded on to the consumer's > queue. > Sorry, but I thought I'm sending to the topic after setting up the consumer, just as you suggest. What do yo

Re: Cannot receive from Virtual Topic's consumer queue

2009-10-28 Thread Shyam Santhanam
Just want to add that I also tried attaching JConsole and looking at the Queue/Topic MBeans. It showed that the consumer queue had 0 dispatch and enqueue count. The virtual topic had 1 enqueue count, 0 dispatch count. So apparently the message isn't getting relayed from the topic to the queue?

Cannot receive from Virtual Topic's consumer queue

2009-10-28 Thread Shyam Santhanam
Hello, I'm trying to use Virtual Topics for the first time (and I'm relatively new to ActiveMQ). I've tried to follow the instructions on the virtual destinations page and also looked at VirtualTopicPubSubTest in activemq-core unit tests and tried to follow it as closely as I could see. This is