Re: build local binary distribution

2006-08-16 Thread bmadigan
-activemq-4.0.2.jar that I would expect to see in the distribution. So I copy it in to the untarred directory and run bin/activemq (I added the printStackTrace in main()): ACTIVEMQ_HOME: /home/bmadigan/Applications/activemq-4.0/assembly/target/incubator-activemq-4.0.2-SNAPSHOT Loading message broker

Re: build local binary distribution

2006-08-16 Thread bmadigan
Ah, never mind. It was in the assembly/target/distributions directory. thanks bmadigan wrote: Sorry, I should have mentioned before that I was working in the 4.0.2 snapshot. Using maven 1 I get the same results. I have tried: maven1 clean install in assembly: maven1

build local binary distribution

2006-08-14 Thread bmadigan
I need to build a local binary from a source snapshot so we can distribute it to our staging and production enviroments. Are there any maven commands that will build a local distrubtion? thanks, B. -- View this message in context:

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-24 Thread bmadigan
Thanks James, looks good. Now I see what was wrong with the wildcard :) Is there a rough release date for the 4.1 codebase? Glad things could come together, Brian Madigan -- View this message in context:

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-21 Thread bmadigan
Thanks James, that test case works for me too. I wrote a use case that (I think) covers the base Virtual Topic functionality. There is a problem somewhere that causes this test to fail. Running it in debug I can see that the Message is dispatched, but not delivered for some reason. Most of the

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-19 Thread bmadigan
Is this the change to call lookup(...) in addConsumer( )? Looks like its not being called. I'd like to run the broker in debug, I'm having trouble figuring out where exactly the lazy creation of destinations is happening. -- View this message in context:

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-18 Thread bmadigan
James.Strachan wrote: Incidentally in the example you give, was the consumer adding a consumer to a temporary queue? Hmm, not intentionally, I'm not sure. I change the subscriber from a Topic type to a Queue using the new Virtual prefix. When it was a Topic, I could see the Virtual

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-18 Thread bmadigan
I updated AbstractRegion, but I am not seeing any change in the behavior after a clean build. Where was the change? addConsumer(..) in AbstractRegion appears to be the same. Subsequent updates did not show any new changes in other files. When a queue consumer connects, I still see only: INFO

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-18 Thread bmadigan
I turned off advisory just to get it out of the way (advisorySupport=false), but it looks like advisory topics are still being created. -- View this message in context: http://www.nabble.com/Re%3A-Virtual-Topics-%28was-Re%3A-Failover-topic-subscribers%29-tf1942508.html#a5387994 Sent from the

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-17 Thread bmadigan
In order for virtual topics to work, getDestinations(.. ) needs to return the virtual destinations. This doesnt happen now since Queues prefixed with ActiveMQ.Virtual don't ever get added to the Destinations Set (nothing actually sends them a message). I'm looking for the place in the broker

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-17 Thread bmadigan
Or AbstractRegion.. I think I can get tthis to work without messing up any of the persistence logic. -- View this message in context: http://www.nabble.com/Re%3A-Virtual-Topics-%28was-Re%3A-Failover-topic-subscribers%29-tf1942508.html#a5364499 Sent from the ActiveMQ - Dev forum at Nabble.com.

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-17 Thread bmadigan
I added logging to AbstractRegion and the virtual topics broker to see what destinations are created when a consumer connects. INFO ConsumerGroupsBroker - Adding Consumer for Destination: topic://ActiveMQ.Advisory.TempQueue,topic://ActiveMQ.Advisory.TempTopic INFO AbstractRegion - Adding

Re: Virtual Topics (was Re: Failover topic subscribers)

2006-07-14 Thread bmadigan
I think something will need to be done in addConsumer(...). When a consumer subscribes to a queue called ActiveMQ.Virtual.GroupName.TopicName, the Destination is not created until someone sends a message to it. The getDestinations(ActiveMQDestination) method returns nothing for

running a snapshot

2006-07-07 Thread bmadigan
I've been trying to install and run a 4.1-SNAPSHOT from source. cd activemq-core maven run:broker maven server none work. Also, how do you build a release from a snapshot for deploying locally? -- View this message in context: