Re: Getting Stomp support to a usable state...

2007-06-08 Thread Mario Siegenthaler
I've added some documentation about the webconsole and I included a section about how to password protect it (although only on jetty, but I hope the folks will figure out how to 'translate'' that to tomcat by themself :). And for the JMX-password issue there is a patch by Andrew Deason (https://is

Performance tests?

2007-06-08 Thread Phil Goodwin
Is activemq-perftest still valid as a performance test? Is Jmeter still supported? I ask because activemq-perftest doesn't compile as shipped in apache-activemq-4.1.1-src.tar.gz, and there isn't a build for Jmeter at all. I'm running maven 2.0.6 on a Mac and I wasn't able to get even activemq to b

Re: Message Selector Not Filtering Messages

2007-06-08 Thread Dris
I think the issue with selectors not working is a bug in NMS. I posted a fix to the Issuer Tracker for NMS a while back, but I'm not sure if anyone has had a chance to look at it. As far as I can see the selector is being set to null before being used, so it never works. I just changed my source c

Re: how do I know activeMQ is working

2007-06-08 Thread Bruce Snyder
On 6/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Greetings, I just download activeMQ 4.1.1. Our OS is Redhat ES 3.0 I have read the following info to get it running. http://activemq.apache.org/getting-started.html http://activemq.apache.org/examples.html It looks like the actieMQ is ru

how do I know activeMQ is working

2007-06-08 Thread [EMAIL PROTECTED]
Greetings, I just download activeMQ 4.1.1. Our OS is Redhat ES 3.0 I have read the following info to get it running. http://activemq.apache.org/getting-started.html http://activemq.apache.org/examples.html It looks like the actieMQ is running fine. -bash-2.05b# netstat -an| grep 61616 tcp

java.lang.IndexOutOfBoundsException with Kaha

2007-06-08 Thread Chad Brandon
Hi, I actually filed this issue in JIRA a little while ago (however then I wasn't able to consistently duplicate it consistently then): https://issues.apache.org/activemq/browse/AMQ-1246. I'm now consistently seeing this issue (in a build of 4.2-SNAPSHOT as of yesterday 6/7/2007 as well).

Re: Unrecognized xbean element mapping: in namespace http://activemq.org/config/1.0

2007-06-08 Thread mogan
Yes, and I included my plugin jar file in the lib directory (apache-activemq-4.1.1\lib). Tom Samplonius-2 wrote: > > > - "mogan" <[EMAIL PROTECTED]> wrote: >> I am trying to add Authentication Plugin to ActiveMQ, and I am getting >> the >> following exception. I also looked at this posting

Re: Unrecognized xbean element mapping: in namespace http://activemq.org/config/1.0

2007-06-08 Thread Tom Samplonius
- "mogan" <[EMAIL PROTECTED]> wrote: > I am trying to add Authentication Plugin to ActiveMQ, and I am getting > the > following exception. I also looked at this posting. > http://mail-archives.apache.org/mod_mbox/activemq-dev/200704.mbox/[EMAIL > PROTECTED] > > and [activemq.xml] > > > xm

ActiveMQ not listening to DefaultMessageListener

2007-06-08 Thread 6mcb6
I have spent considerable amount of time to resolve it so please help me if you know how to solve this http://forum.springframework.org/showthread.php?t=39820 http://forum.springframework.org/showthread.php?t=39820 -- View this message in context: http://www.nabble.com/ActiveMQ-not-listeni

Re: Embedded Broker - configuration via Java

2007-06-08 Thread Raffaele
I'm sorry but I need more help to configure from Java an embedded broker... In particular I 'm not able to set persitence in MySql, in fact when I launch my example (that you can found after this message) I cannot see messages in tables... And, if I delete the three tables, my code don't reacreat

Re: Opinion about approach for using local/distributed message dispatch

2007-06-08 Thread James Strachan
On 6/8/07, David Budworth <[EMAIL PROTECTED]> wrote: I have a mechanism I've written that uses dynamic proxies to intercept hits to JMX mbeans that checks to see if a local instance is up and initialized, if not, it will send a JMS message to a centralized broker to see if another server has the

Re: 4.1.1 Unix binary does not download

2007-06-08 Thread James Strachan
On 6/6/07, Bruce Snyder <[EMAIL PROTECTED]> wrote: On 6/5/07, huntc <[EMAIL PROTECTED]> wrote: > > Hi there, > > Firstly, what an exciting project this is. I can't wait to use it. > > I've been having some Mac OS X Safari download issues of the binary Unix > distro for 4.1.1. When I download it i

Re: Embedded Broker - configuration via Java

2007-06-08 Thread Raffaele
James.Strachan wrote: > > I meant to disable JMX not JMS :) > Eheheh, with disabling JMS we go all at home... Ok, thanks, it was that I started the embeddedbroker with jdk 1.4, and so the solution was to set useJMX to false, thanks again. Best regards Raffaele -- View this message in co

Re: Embedded Broker - configuration via Java

2007-06-08 Thread James Strachan
On 6/8/07, James Strachan <[EMAIL PROTECTED]> wrote: On 6/8/07, Raffaele <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'm trying to create, configure and launch a broker all in one class. > > I have a ClassNotFoundException executing the following lines: > > BrokerService broker = new BrokerService

Re: Embedded Broker - configuration via Java

2007-06-08 Thread James Strachan
On 6/8/07, Raffaele <[EMAIL PROTECTED]> wrote: Hi all, I'm trying to create, configure and launch a broker all in one class. I have a ClassNotFoundException executing the following lines: BrokerService broker = new BrokerService(); broker.addConnector("tcp://localhost:61616"); broker.start();

Embedded Broker - configuration via Java

2007-06-08 Thread Raffaele
Hi all, I'm trying to create, configure and launch a broker all in one class. I have a ClassNotFoundException executing the following lines: BrokerService broker = new BrokerService(); broker.addConnector("tcp://localhost:61616"); broker.start(); And the exception thrown by addConnector(...) i