Re: create queue using command line

2010-08-12 Thread cmoulliard
You are right except in the case that you don't provide access rights for producers/consumers to create queues/topics dynamically but want that admin / infrastructure people do that !! Kind regards, Charles Denis Bazhenov wrote: There is no need to create queues explicitly. Queues and

Getting javax.jms.JMSException: Wire format negotiation timeout: peer did not send his wire format.

2010-08-12 Thread Ess -Activemq
We are getting javax.jms.JMSException: Wire format negotiation timeout: peer did not send his wire format. exception inconsistently. We have tried the workaorund provided in https://issues.apache.org/activemq/browse/AMQ-1473 But it didnt help us by increasing negotiation timeout. Can

Re: create queue using command line

2010-08-12 Thread Gary Tully
my guess is an attempt to purge a non existent destination from the admin tool will create it as a side effect. On 12 August 2010 07:41, cmoulliard cmoulli...@gmail.com wrote: You are right except in the case that you don't provide access rights for producers/consumers to create queues/topics

CMS getString throws exception if string is empty ?

2010-08-12 Thread Sodan
example: try { string xx = map-getString(myString); return xx; } catch (...) { // failed MessageBeep(-1); } if the field myString in the message is empty (ie. ), then it throws an exception. I am using 3.2.2 please help with a fix asap ! Søren -- View this message in context:

ActiveMQ disconnects producer with large message throughput

2010-08-12 Thread Robillard, Greg L
Not certain where to begin. apache-activemq-5.3.2 using non-persistent queues using openwire jms connections Problem described: Normal operation has about 30 clients connected receiving between 300 and 500 messages per minute. Problem occurs if a single client configures a large amount of

connection-start() or connection-createSession() hangs when trying to connect ActiveMQ-CPP client with OpenMQ broker via STOMP

2010-08-12 Thread cppdeveloper
I am trying to connect an ActiveMQ-CPP client with an Oracle OpenMQ broker via STOMP. Both manufacturers claim this will work, and I have been able to get an ActiveMQ-CPP client to connect to an ActiveMQ broker via STOMP, an OpenMQ client with an OpenMQ broker via STOMP, and an OpenMQ client with

Re: ActiveMQ disconnects producer with large message throughput

2010-08-12 Thread Gary Tully
filePendingMessagecursor is your man here, and configure a systemUsage memory limit that controls how much memory resources are consumed by the cursors before offloading to the local filesystem kicks in. On 12 August 2010 16:59, Robillard, Greg L greg.l.robill...@lmco.com wrote: Not certain

Re: CMS getString throws exception if string is empty ?

2010-08-12 Thread Timothy Bish
On Thu, 2010-08-12 at 08:50 -0700, Sodan wrote: example: try { string xx = map-getString(myString); return xx; } catch (...) { // failed MessageBeep(-1); } if the field myString in the message is empty (ie. ), then it throws an exception. I am using 3.2.2 please help with a

Re: CMS getString throws exception if string is empty ?

2010-08-12 Thread Sodan
Windows 7 Visual Studio 2010 Søren Timothy Bish wrote: On Thu, 2010-08-12 at 08:50 -0700, Sodan wrote: example: try { string xx = map-getString(myString); return xx; } catch (...) { // failed MessageBeep(-1); } if the field myString in the message is empty (ie. ), then it

RE: EXTERNAL: Re: ActiveMQ disconnects producer with large message throughput

2010-08-12 Thread Robillard, Greg L
Thanks. Can you point to a description of the filePendingMessageCursor, so I understand it's implementation? -Original Message- From: Gary Tully [mailto:gary.tu...@gmail.com] Sent: Thursday, August 12, 2010 11:46 AM To: users@activemq.apache.org Subject: EXTERNAL: Re: ActiveMQ

Re: connection-start() or connection-createSession() hangs when trying to connect ActiveMQ-CPP client with OpenMQ broker via STOMP

2010-08-12 Thread Timothy Bish
On Thu, 2010-08-12 at 09:35 -0700, cppdeveloper wrote: I am trying to connect an ActiveMQ-CPP client with an Oracle OpenMQ broker via STOMP. Both manufacturers claim this will work, and I have been able to get an ActiveMQ-CPP client to connect to an ActiveMQ broker via STOMP, an OpenMQ client

How do I run maven command to run performance module?

2010-08-12 Thread jzhang
I am trying to run performance module from my desktop to measure broker performance (brokers are on Linux VMs). I followed steps from http://activemq.apache.org/activemq-performance-module-users-manual.html to build amq from source and ran 'mvn clean install' from 'activemq-tooling'. But the

Re: CMS getString throws exception if string is empty ?

2010-08-12 Thread Timothy Bish
On Thu, 2010-08-12 at 08:50 -0700, Sodan wrote: example: try { string xx = map-getString(myString); return xx; } catch (...) { // failed MessageBeep(-1); } if the field myString in the message is empty (ie. ), then it throws an exception. I am using 3.2.2 please help with a

Re: connection-start() or connection-createSession() hangs when trying to connect ActiveMQ-CPP client with OpenMQ broker via STOMP

2010-08-12 Thread cppdeveloper
How can I find which Frame is returned? Is this in a log somewhere? All I see on the screen of the OpenMQ broker is: INFO: Create JMS connection for user admin with client id ID:csa-nexus-54731-1281646773388-1:0 Aug 12, 2010 12:59:33 PM INFO: Started JMS connection

Re: connection-start() or connection-createSession() hangs when trying to connect ActiveMQ-CPP client with OpenMQ broker via STOMP

2010-08-12 Thread Timothy Bish
On Thu, 2010-08-12 at 13:53 -0700, cppdeveloper wrote: How can I find which Frame is returned? Is this in a log somewhere? All I see on the screen of the OpenMQ broker is: INFO: Create JMS connection for user admin with client id ID:csa-nexus-54731-1281646773388-1:0 Aug 12, 2010 12:59:33

Re: connection-start() or connection-createSession() hangs when trying to connect ActiveMQ-CPP client with OpenMQ broker via STOMP

2010-08-12 Thread cppdeveloper
Timothy Bish wrote: You can append this option to the connection URI to get the Commands that are sent and received logged to the console: transport.commandTracingEnabled=true I Don't know how to configure that on the OpenMQ side. Regards When I did this to the ActiveMQ-CPP

Re: CMS getString throws exception if string is empty ?

2010-08-12 Thread Sodan
what file was changed? Søren Timothy Bish wrote: On Thu, 2010-08-12 at 08:50 -0700, Sodan wrote: example: try { string xx = map-getString(myString); return xx; } catch (...) { // failed MessageBeep(-1); } if the field myString in the message is empty (ie. ), then it throws

Re: CMS getString throws exception if string is empty ?

2010-08-12 Thread Timothy Bish
On Thu, 2010-08-12 at 14:17 -0700, Sodan wrote: what file was changed? Søren Check the svn log: svn log -v -l 1 Regards Tim. Timothy Bish wrote: On Thu, 2010-08-12 at 08:50 -0700, Sodan wrote: example: try { string xx = map-getString(myString); return xx; } catch

Re: CMS getString throws exception if string is empty ?

2010-08-12 Thread Sodan
ok, thanx, that worked. Søren -- View this message in context: http://old.nabble.com/CMS-getString-throws-exception-if-string-is-empty---tp29420197p29423567.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: ActiveMQ fails to create tables in MySQL 5.5.5

2010-08-12 Thread Matthew J.
Patch has been created and submitted to the Jira issue. Matthew J. wrote: Jira created as AMQ-2857. https://issues.apache.org/activemq/browse/AMQ-2857 I have not yet created or posted a patch for the issue. Timothy Bish wrote: ... Can you open a new Jira issue for this, and

Re: connection-start() or connection-createSession() hangs when trying to connect ActiveMQ-CPP client with OpenMQ broker via STOMP

2010-08-12 Thread Timothy Bish
On Thu, 2010-08-12 at 14:14 -0700, cppdeveloper wrote: Timothy Bish wrote: You can append this option to the connection URI to get the Commands that are sent and received logged to the console: transport.commandTracingEnabled=true I Don't know how to configure that on the