Re: ActivemQ - starting the broker

2008-04-22 Thread Fred D
Hi, I noticed only 1 slash in the URL could it be a typo? or just in the error message It should be: "tcp://localhost:55000" in the config xml file. If this is not it ... try running a standalone broker (right after unzipping the binary package) to see if that works as a start. Fred --

Re: ActiveMQ not starting - Local host name unknown

2008-04-21 Thread Fred D
Hi Not sure which release you are attempting to run. As well, what is the structure of the command you are issuing. For a simple test run, out of the box just issuing "activemq" should just start a broker with a default setup. If you are looking to give ActiveMQ a try, perhaps pick a stable rel

Re: JDBC Database Persistence Question

2008-04-17 Thread Fred D
Hi Brian, For your setup, the AMQ Message store (used by default with AMQ 5+) is probably your best bet. The real benefit for JDBC in Active MQ is that it supports a wide range of platforms that you can utilize if you already have these deployed (reuse your investment). As well you can handle so

Re: Null Pointer Exception on broker

2008-04-15 Thread Fred D
Maybe try to see where the thresold is ... increase 1 or 2 subsribers until it happens. A workaround might be to try a network of 2 brokers perhaps to see if its a scaling issue. Fred Ramit Arora wrote: > > Hi, > I am testing ActiveMQ 5.0 using a Perl Publisher (using Net::Stomp) & Java > Sub

Re: building with maven fails - win xp- sp2 , jdk 1.6_05

2008-04-15 Thread Fred D
Were you able to get this to run after downloading the depencies? Fred KMalhi wrote: > > Trying to build with maven: > > mvn clean install -Dmaven.test.skip=true > > It fails with the following message:- > > [INFO] > >

Re: custom plugin

2008-04-14 Thread Fred D
This depends on what you mean by a "plugin". If you have extended the activemq code to add your own functionality and there are some additional configuration parameters you should be able to extend the xml file with your parameters. Activemq uses xbean, so you should add these to the xsd and poin

Re: ActiveMQ.DLQ and maxiumRedeliveries

2008-02-27 Thread Fred D
I believe you should set maximumRedeliveries to -1 ... this effectively defines an infinite number of redeliveries http://activemq.apache.org/redelivery-policy.html You can set this in the activemq.xml config file in the /conf directory if that is the config you use. You can try the followi