Exception when using bin/activemq query or list ...

2010-09-29 Thread Ravi
The command line bin/activemq list throws the following error (we first tried to access the broker through web console, but no response) ... Anyone know what the problem might be. Is the broker state hosed and we need to restart ? ERROR: java.lang.RuntimeException: Failed to execute list task. Re

Suggestion for a TOPIC subscriber REST API

2010-09-29 Thread ChicagoBob123
When using REST the subscriber can loose connection or disconnect all together. It would be nice to have a subscription timeout so the broker is not left holding the messages indefinitely for the subscriber. Or is there such an option already? Currently I created what seems to be a complex solu

Re: statisticsBrokerPlugin error

2010-09-29 Thread watcher
I solved the timeout issue by setting the pattern to InOnly so Camel will send the message and not expect a reply. However I can still see many of the following exceptions been thrown in wrapper.log Should I ignore them? | jvm 1| 2010/09/27 20:03:37 | INFO | Tr

Re: Fatal Error: Unable to successfully start ActiveMQ 5.4.1 Broker

2010-09-29 Thread Timothy Bish
On Wed, 2010-09-29 at 12:58 -0700, johneboyer wrote: > I've been using ActiveMQ 5.4.1 since its release. I've been running it with > the console: ./activemq console. However, now I'm unable to start the > broker. Does anyone know what it is going wrong? Thank you for your time! > > INFO: Using def

Fatal Error: Unable to successfully start ActiveMQ 5.4.1 Broker

2010-09-29 Thread johneboyer
I've been using ActiveMQ 5.4.1 since its release. I've been running it with the console: ./activemq console. However, now I'm unable to start the broker. Does anyone know what it is going wrong? Thank you for your time! INFO: Using default configuration (you can configure options in one of these

Re: STOMP client connecting, but receiving connection error from ActiveMQ 5.4.1

2010-09-29 Thread John Boyer
Thanks Dejan. Our STOMP client code was auto connecting and we were explicitly connecting as well. Everything works fine now. Regards, John Boyer On Sep 29, 2010, at 1:06 AM, Dejan Bosanac wrote: > This means that you already connected with that connection. Check if > you're connecting multipl

RE: exception trying to stop activemq, stomp weirdness

2010-09-29 Thread Allen Reese
Have you guys considered using something like apache jsvc to stop and start? http://commons.apache.org/daemon/jsvc.html It's much cleaner and doesn't require jmx to start and stop. All that needs to be done is to write a simple wrapper to implement the Daemon interface, and implement start and

Re: producer flow control and message cursors

2010-09-29 Thread Joe Niski
Thanks for the clarification, Dejan. *Joe Niski *IS Development | NWEA PHONE 503.212.3382 | FAX 503.639.7873 NWEA.ORG <3D%22http://www.nwea.org/%22> ** | Partnering to Help All Kids Learn On 09/29/2010 01:29 AM, Dejan Bosanac wrote: > No, producer flow control is on by default with store ba

Beginner problem: Too many consumers on queue after browser restart...

2010-09-29 Thread jule
Hi there. I have a problem (likely a lack of configuration) with ActiveMQ 5.4.1. I am using ActiveMQ to allow a 1-to-1 conversation between two clients: I have set up the Standalone Broker by extracting it, creating a new folder in the "webapps"-folder, copied over META-INF and WEB-INF folders

Re: ACTIVEMQ-CPP Error compiling activemq-cpp release SSL

2010-09-29 Thread Ivan Pechorin
2010/9/28 Oscar Pernas : > > ..\src\main\decaf\lang\System.cpp(389) : error C2664: 'strlen' : cannot > convert parameter  1 from 'LPTSTR' a 'const char *' > ..\src\main\decaf\lang\System.cpp(395) : error C2664: > 'std::vector<_Ty>::push_back' : cannot convert parameter  1 1 de 'LPTSTR' a > 'const s

Re: ACTIVEMQ-CPP Error compiling activemq-cpp release SSL

2010-09-29 Thread Timothy Bish
On Wed, 2010-09-29 at 13:07 +0100, Oscar Pernas wrote: > Hi, > > > I've still having this errors with visual studio 2008 express, this is the > log: > Added some missing preprocessor definitions to the Project files in SVN, you can check out the latest changes from the 3.2.x fixes branch to get

Re: Message priority

2010-09-29 Thread math_baril
https://issues.apache.org/activemq/browse/AMQ-2949 -- View this message in context: http://activemq.2283324.n4.nabble.com/Message-priority-tp2717868p2718918.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Message priority

2010-09-29 Thread math_baril
Thanks Dejan Here is the link to the the issue I've created : https://issues.apache.org/activemq/browse/AMQ-2949 -- View this message in context: http://activemq.2283324.n4.nabble.com/Message-priority-tp2717868p2718912.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: ACTIVEMQ-CPP Error compiling activemq-cpp release SSL

2010-09-29 Thread Oscar Pernas
Hi, I've still having this errors with visual studio 2008 express, this is the log: -- Build started: Project: activemq-cpp, Configuration: Release-SSL Win32 -- Compiling... System.cpp ..\src\main\decaf\lang\System.cpp(389) : error C2664: 'strlen' : cannot convert parameter 1 from 'LPTST

Re: How to store everything in DB

2010-09-29 Thread Tobias Trelle
Gary Tully wrote: > > ActiveMQ will create all the relevant tables automatically at startup. > In case the ActiveMQ db user does not have the permission to create tables (what most db admins will prefer), is there a DDL script (or at least a table description) that creates the tables in advanc

Re: CMS: get name of destination - how to ?

2010-09-29 Thread sodandk
oops. had to use dynamic_cast... now its ok again... Søren -- View this message in context: http://activemq.2283324.n4.nabble.com/CMS-get-name-of-destination-how-to-tp2552032p2718590.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Help to solve problem !

2010-09-29 Thread quoc_thai
Hi all, I have been tried to create a connection beetween ActiveMQ (version 5.3.1) and BlazeDS turnkey (intergrated Tomcat). My server app is Java, it send some messages to Flex client via ActiveMQ and BlazeDS (java app server send messages to ActiveMQ server and ActiveMQ pass this messages t

Re: producer flow control and message cursors

2010-09-29 Thread Dejan Bosanac
No, producer flow control is on by default with store based cursor and it will block producers when queue limits are hit. You can additionally configure it so that send() method of the producer will throw an exception in that case. Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source I

Re: exception trying to stop activemq, stomp weirdness

2010-09-29 Thread Dejan Bosanac
Hi, the stop script tries first to connect to the broker using JMX and stop it "cleanly" and if it doesn't succeed it kills it. So make sure you enable it in your activemq.xml Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action

Re: Message priority

2010-09-29 Thread Dejan Bosanac
Can you raise a Jira issue and attache the test case there? Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Tue, Sep 28, 2010 at 10:25 PM, math_baril wr

Re: STOMP client connecting, but receiving connection error from ActiveMQ 5.4.1

2010-09-29 Thread Dejan Bosanac
This means that you already connected with that connection. Check if you're connecting multiple times. Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Tu