Re: Problem changing the managementContext default port 1099

2009-05-28 Thread paksiw
Forgot to mention that I am using activemq 5.2 in linux paksiw wrote: > > Hi, > > I understand from the documentation that I'll need to enable the > management context connector in order for me to successfully use the > "activemq-admin stop" command. > > I want to change the Management Conte

Re: Problem changing the managementContext default port 1099

2009-05-28 Thread paksiw
Forgot to mention, I'm using activemq version 5.2 in Linux. paksiw wrote: > > Hi, > > I understand from the documentation that I'll need to enable the > management context connector in order for me to successfully use the > "activemq-admin stop" command. > > I want to change the Management C

Problem changing the managementContext default port 1099

2009-05-28 Thread paksiw
Hi, I understand from the documentation that I'll need to enable the management context connector in order for me to successfully use the "activemq-admin stop" command. I want to change the Management Context default port from 1099 to 1199. I tried changing the management context connectionPort

How can I connect to Websphere MQ?

2009-05-28 Thread sharpor
Dear All, I have several client machines and a server machine. On every client machine, there has been depolyed an activeMQ and there is a WebsphereMQ server on the server machine. Our Java application using activemq in client machine to send messages to the server machine. This means that the Jav

Re: Example of connecting via SSL to ActiveMQ?

2009-05-28 Thread Serge Merzliakov
Grant, I have got client and server side authentication to work. My code is a customized log4j appender but The AuditAppender class connect method shows how I did. I followed the instructions on same page u did. Here is what all my files do: 1) AuditAppender.java - Custom log4j appender which m

JMSMessageID

2009-05-28 Thread Gorkis
Hi, Anyone can confirm me if JMSMessageID value generation is unique among all the time? I refer that message id from consumed message can't be used again. Thanks! -- View this message in context: http://www.nabble.com/JMSMessageID-tp23771041p23771041.html Sent from the ActiveMQ - User mailing

Re: Diff between activemq.bat and activemq-admin.bat?

2009-05-28 Thread Giovani Seben
activemq.bat will start a broker instance. activemq-admin.bat can be used to start a broker as well but it has other admin functionality to it. See http://activemq.apache.org/activemq-command-line-tools-reference.htmlfor more details. -Gio On Thu, May 28, 2009 at 11:58 AM, pstein wrote: > > In

How do I know that ActiveMQ is successful started?

2009-05-28 Thread pstein
When I clicked on activemq.bat (under WinXP) then a lot of lines appear with a "INFO" tag at the beginning. Then nothing happens. Is ActiveMQ server successful started ? Actually I expected an info line at last similar to: "ActiveMQ running and ready..." Peter -- View this message in context:

Diff between activemq.bat and activemq-admin.bat?

2009-05-28 Thread pstein
In the bin directory I found two different *.bat files: activemq.bat and activemq-admin.bat What is the difference between them? Peter -- View this message in context: http://www.nabble.com/Diff-between-activemq.bat-and-activemq-admin.bat--tp23764705p23764705.html Sent from the ActiveMQ - User

Re: Get an exception when running embedded ActiveMQ with TransportConnector activation on Felix

2009-05-28 Thread Andreas Gies
Hi thanks for letting us know. Every piece of knowledge helps :) Regards Andreas On May 28, 2009, at 3:26 PM, ffrenchm wrote: Hello Andreas, I finally get an idea from where could comes the problem because I reproduced it through Eclipse with my JUnit tests on my embedded activemq proje

Durable Subscriber to topic loses connection

2009-05-28 Thread setitesuk
Hi, I am new to message queues, and have hit a problem, which I cannot seem to find an answer to either here or on the ActiveMQ website. I am using v5.2 and Net::Stomp through CPAN. I have a durable subscriber to a topic, which loses his connection (Not Cleanly disconnecting first - i.e. proces

Re: ActiveMQ native API problem : BrokerService.stop & BrokerService.start(true)

2009-05-28 Thread Dejan Bosanac
Hi, have you used waitUntilStarted() and waitUntilStopped() methods. Take a look at testForceBrokerRestart() test here http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/xbean/ConnectorXBeanConfigTest.java?revision=773569 it does what you are trying to a

Re: Get an exception when running embedded ActiveMQ with TransportConnector activation on Felix

2009-05-28 Thread ffrenchm
Hello Andreas, I finally get an idea from where could comes the problem because I reproduced it through Eclipse with my JUnit tests on my embedded activemq project which is directly linked on my activemq-core Eclipse project (note that when I link my embedded activemq project with the activemq-co

Re: ActiveMQ native API problem : BrokerService.stop & BrokerService.start(true)

2009-05-28 Thread ffrenchm
Thanks for your answer Ruben... Anyway I think that the start(force) method shouldn't raise me the following exception : > 2562 [main] ERROR > org.apache.activemq.store.kahadaptor.KahaPersistenceAdapter - Failed to > get > destinations > java.io.IOException: Store has been closed. >at >

Re: Problem With Producer Flow Control?

2009-05-28 Thread Joe Fernandez
Hi Dejan, Wasn't sure if underneath the covers, the AMQ client code was allocating a thread for each connection. Thanks for the quick response. Joe Dejan Bosanac wrote: > > Hi Joe, > > I think problem is that your thread is blocked on producer send(), so no > matter sessions and connecti

Re: Idle Connection Timeout in ActiveMQ 5.0

2009-05-28 Thread simone_b
I second this. I notice that some consumers get disconnected after some time that they don't receive messages. mythz wrote: > > Is there a way to change the idle connection timeout for consumers in > ActiveMQ v5.0? > > I'm having a problem that wasn't happening in ActiveMQ v4.x where the > con

how to integrate activemq-5.2.0 web console with jboss-5.1.0.GA

2009-05-28 Thread Chinmaya
Hi, I am new to this ActiveMQ and Jboss. I successfully configured ActiveMQ and Jboss using the link : http://activemq.apache.org/integrating-apache-activemq-with-jboss.html http://activemq.apache.org/integrating-apache-activemq-with-jboss.html Whats the correct approach to configure Jboss wi

Re: Problem With Producer Flow Control?

2009-05-28 Thread Dejan Bosanac
Hi Joe, I think problem is that your thread is blocked on producer send(), so no matter sessions and connections nothing else could be done until it is unblocked. Cheers -- Dejan Bosanac Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - h

Re: JMS over HTTP

2009-05-28 Thread Dejan Bosanac
Hi Mark, you can try using http transport http://activemq.apache.org/http-and-https-transports-reference.html if you expirience any problems with this transport, you can try latest 5.3 snapshots as there were couple of improvements in this area recently. Cheers -- Dejan Bosanac Open Source Int

Throttling message release from an ActiveMQ 5.2.0 queue

2009-05-28 Thread lyall
I am looking for a way to throttle the rate of release of messages from a nominated ActiveMQ 5.2.0 queue. I would like to be able to say something like 'release 1 message per second from this queue'. My scenario only has one consumer. I am not concerned about the queue building up, at this stage