Re: Use of MirroredQueues results in OutOfMemoryError

2009-03-30 Thread Andreas Gies
That's good news Thanks Andreas On Mar 30, 2009, at 8:20 PM, jvh wrote: Yep, I think that's got it! I've been testing from rev. 759125 (3/27) and I don't see the build-up of those objects anymore. I'll see about integrating this 5.3-SNAPSHOT into our stuff. Thanks, --jim Andreas Gi

ActiveMQ 5.2 too many open files exception

2009-03-30 Thread deathemperor
I'm running AMQ 5.2.0 and keep getting the error: 2009-03-31 08:41:28,674 [...@0.0.0.0:8161] WARN log - EXCEPTION java.io.IOException: Too many open files at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method) at sun.nio.ch.ServerSocketChannelImp

Re: Do I have to use Spring Framework to configure virtaul topic

2009-03-30 Thread chutny
Do we have any out of box solutions for virtual destinations selectors in any of the newest version of ActiveMQ . greatly appreciate your response . Thx, Prem. James.Strachan wrote: > > On 2/20/07, LiXiao2007 wrote: >> James, Thank you very much for answering my previous question. My next >

Re: NMS Connection Settings

2009-03-30 Thread Timothy Bish
On Mon, 2009-03-30 at 13:11 -0500, Bryan Murphy wrote: > Hey guys, > > I'm back on our ActiveMQ connection problems (again!). I'm deep > diving into the code, and trying to understand what is going on. Our > message queues get stuck, sometimes it takes a couple days, but > inevitably it happens

Re: How to integrate Ajax client with ActiveMQ CPP publisher

2009-03-30 Thread Timothy Bish
On Mon, 2009-03-30 at 11:21 -0700, manua wrote: > Hi All, > > I am trying to run the Market data example of webapps/demo. I am able to run > the example with portfolio in one window and publisher in another window. > > I wan to run the same portfolio client, but instead of getting data from > pu

Re: Securing the web console impossible?

2009-03-30 Thread magellings
I was successfully able to get everything working with login configured with BASIC authentication and following all the steps in this thread by original poster. BASIC adminRealm Trying with DIGEST led me to the "all modules ignored" error, which also is logged with a user who isn'

How to integrate Ajax client with ActiveMQ CPP publisher

2009-03-30 Thread manua
Hi All, I am trying to run the Market data example of webapps/demo. I am able to run the example with portfolio in one window and publisher in another window. I wan to run the same portfolio client, but instead of getting data from publisher class I want portfolio to pick data sent by a CPP pub

Re: Use of MirroredQueues results in OutOfMemoryError

2009-03-30 Thread jvh
Yep, I think that's got it! I've been testing from rev. 759125 (3/27) and I don't see the build-up of those objects anymore. I'll see about integrating this 5.3-SNAPSHOT into our stuff. Thanks, --jim Andreas Gies-3 wrote: > > Hello, > > I have just rerun the testcase against the latest trun

NMS Connection Settings

2009-03-30 Thread Bryan Murphy
Hey guys, I'm back on our ActiveMQ connection problems (again!). I'm deep diving into the code, and trying to understand what is going on. Our message queues get stuck, sometimes it takes a couple days, but inevitably it happens forcing a restart of the server and all services that connect to th

creating a successfull test with JMEter

2009-03-30 Thread Andres Rangel
Hi, I am trying to load test the jms server (version 5.1) with JMeter vr 2.3.2 and haven't been able to succeed. The doc is so outdated that it just does not match the new jmeter version. Anybody has it running in the newer Jmeter? I am trying to test a request-response message --

Re: Slave but worker !

2009-03-30 Thread Samuel Liard
Of course ! :) But it's not my question. Ok, slave broker is waiting... but why other stuff declare in my spring configuration are waiting to ? I just want in the same JVM (same spring configuration) a slave broker (do nothing, just wait master dead) and a consumer connect to the master node. Bu

Re: Slave but worker !

2009-03-30 Thread Joe Fernandez
A slave broker will not accept connections from clients or other brokers until it becomes a master. Joe Get a free ActiveMQ user guide at http://www.ttmsolutions.com Samuel Liard wrote: > > Hi, > > I use Shared File System Master Slave configuration in two JVM with > Spring. > > It's works

Slave but worker !

2009-03-30 Thread Samuel Liard
Hi, I use Shared File System Master Slave configuration in two JVM with Spring. It's works well but I would like add consumer in the Slave JVM. I try : failover://(tcp://master:61616,vm:localhost) And the broker : In this case, the slave wait f

Re: Failover and redeliverypolicy in one connection uri

2009-03-30 Thread boniek
5.2.0 -- View this message in context: http://www.nabble.com/Failover-and-redeliverypolicy-in-one-connection-uri-tp22780954p22781971.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Failover and redeliverypolicy in one connection uri

2009-03-30 Thread boniek
Full stack trace: 2009-03-30 13:44:02,728 ERROR [STDERR] javax.jms.JMSException: Could not create Transport. Reason: java.lang.IllegalArgumentException: Invalid connect parameters: {jms.redeliveryPolicy.maximumRedeliveries=2} 2009-03-30 13:44:02,728 ERROR [STDERR] at org.apache.activemq.util.JMS

Re: Failover and redeliverypolicy in one connection uri

2009-03-30 Thread Dejan Bosanac
Hi, just tried failover:(tcp://localhost:61616)?randomize=false&jms.redeliveryPolicy.maximumRedeliveries=2 and it works fine. Which version of AMQ are you using? Cheers -- Dejan Bosanac Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - ht

Re: Failover and redeliverypolicy in one connection uri

2009-03-30 Thread boniek
2009-03-30 13:44:02,728 ERROR [STDERR] javax.jms.JMSException: Could not create Transport. Reason: java.lang.IllegalArgumentException: Invalid connect parameters: {jms.redeliveryPolicy.maximumRedeliveries=2} 2009-03-30 13:44:02,728 ERROR [STDERR] at org.apache.activemq.util.JMSExceptionSupport.cr

Re: Failover and redeliverypolicy in one connection uri

2009-03-30 Thread Dejan Bosanac
Hi, connection options are set once for the whole connection, so they shouldn't be defined for sub URIs. Try if this works for you failover://(tcp://host1:61616,tcp://host2:61616)?randomize=false&jms.redeliveryPolicy.maximumRedeliveries=2 Cheers -- Dejan Bosanac Open Source Integration - http:/

Failover and redeliverypolicy in one connection uri

2009-03-30 Thread boniek
Why this client connection uri for my consumer doesn't work (it hangs when getting connection)? failover://(tcp://host1:61616?jms.redeliveryPolicy.maximumRedeliveries=2,tcp://host2:61616?jms.redeliveryPolicy.maximumRedeliveries=2)?randomize=false -- View this message in context: http://www.nabb