Re: ActiveMQ 5: Keepalive problems

2008-02-28 Thread ssozonoff
Hi Rob, rajdavies wrote: This is fixed in the latest snapshot version cheers, Rob Do you have a reference to the fix? Can it be backported to 5.0 ? Thanks, Serge -- View this message in context: http://www.nabble.com/ActiveMQ-5%3A-Keepalive-problems-tp14994260s2354p15732844.html Sent

Re: Inactivity monitor exception is closing connection.

2008-02-28 Thread cedricb
Hi Rob, We've got the same issue with a Spring 2.5.1/ActiveMQ 5.0.0 application. I've just tested the apache-activemq-5.1-20080227.125551-32 version and it look like the problem is fixed... :-) When do you think, 5.1 will be release? I don't really want to go to production with a snapshot

Re: fixing queue size

2008-02-28 Thread puska
If you found solution, can you explain how you did it. Thanks. shineOnYou wrote: hi everyone, Please guide me how to fix queue size i mean limiting memory to a particular queue. thanks. -- View this message in context:

Re: ActiveMQ - Maven - ActiveIO

2008-02-28 Thread Sigmund
[WARNING] An error occurred during dependency resolution. Failed to retrieve org.apache.activemq:activeio-core-3.1-SNAPSHOT Caused by: Unable to download the artifact from any repository Try downloading the file manually from the project website. Then, install it using the

Re: ActiveMQ 5: Keepalive problems

2008-02-28 Thread Rob Davies
Although the snapshot is 5.1 - we hope to be doing a maintenance release 5.0.1 - which will include the fix On 28 Feb 2008, at 09:39, ssozonoff wrote: Hi Rob, rajdavies wrote: This is fixed in the latest snapshot version cheers, Rob Do you have a reference to the fix? Can it be

Re: Inactivity monitor exception is closing connection.

2008-02-28 Thread Rob Davies
On 28 Feb 2008, at 09:42, cedricb wrote: Hi Rob, We've got the same issue with a Spring 2.5.1/ActiveMQ 5.0.0 application. I've just tested the apache-activemq-5.1-20080227.125551-32 version and it look like the problem is fixed... :-) When do you think, 5.1 will be release? I don't

Re: fixing queue size

2008-02-28 Thread puska
I tried with policyEntry tag, setting memoryLimit, but it didn't work. I saw that queue memory limit has changed (through query tool), but queue was accepting new messages and it's property MemoryPercentageUsed was far above 100. Do I need to set anything else? I'm working with activemq 4.1.1.

Using http transport from a Perl client

2008-02-28 Thread Ramit Arora
Hi All, I am experimenting with ActiveMQ 5.0, my clients are in Perl. While tinkering around, I managed to get Java clients to communicate with the broker using http. It seems that JMS commands are serialized into xml using XStream sent over http. The broker deserializes them using XStream.

Re: Using http transport from a Perl client

2008-02-28 Thread James Strachan
To talk to ActiveMQ via Perl, use the Perl Stomp client... http://activemq.apache.org/cross-language-clients.html On 28/02/2008, Ramit Arora [EMAIL PROTECTED] wrote: Hi All, I am experimenting with ActiveMQ 5.0, my clients are in Perl. While tinkering around, I managed to get Java

ActiveMQ 5.1-SNAPSHOT-125551-32 doesn't work

2008-02-28 Thread sparky2708
I get this error message when trying to start the SNAPSHOT version: ACTIVEMQ_HOME: /production/javalib/activemq/dev ACTIVEMQ_BASE: /production/javalib/activemq/dev Loading message broker from: xbean:file:/production/trade_execution/conf/dev/activemq_master.xml INFO BrokerService

Re: VTD-XML 2.3

2008-02-28 Thread James Strachan
On 28/02/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I would be glad to join the group and help out... what does it take to join? So we love patches :) http://activemq.apache.org/camel/contributing.html and the camel-extra project we can add committers pretty easily.

RE: JBoss Messaging Stomp Configuration

2008-02-28 Thread Johann Ungerer
Hi Jim, Thank you for the reply, its gotten me quite a bit further. I am currently experiencing a connectivity issue from stomp to JBM, so I'm posting the startup file that I'm using for stomp in hopes that I'm doing something silly. I am able to connect to the JBM via code on the provider url

When is it safe to close a consumer?

2008-02-28 Thread stirlingc
Hello, I have a test case that's currently failing with ActiveMQ 5.0.0 and 5.1-SNAPSHOT, and I want to confirm the proper behaviour before I file a JIRA ticket. My test involves creating a queue that contains a single queue. Two consumers within separate sessions attempt to read from the queue

Re: When is it safe to close a consumer?

2008-02-28 Thread stirlingc
My original message has a typo. The test involves create a single queue with a single *message*. -- View this message in context: http://www.nabble.com/When-is-it-%22safe%22-to-close-a-consumer--tp15749587s2354p15749606.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Is it ever OK to use a session *synchronously* from more than one thread?

2008-02-28 Thread stirlingc
Hello, The JavaDoc for ActiveMQSession states that it is a single-threaded class. Mr. Strachan re-iterates in this message about ensuring that each thread has its own session and producers/consumers:

AMQ 5.1 - Re-queued msg are redelivered again after restart

2008-02-28 Thread DinDon
Hello guys, I am new to JMS and ActiveMQ(apache-activemq-5.1-20080220.151243-27), and I have been testing ActiveMQ with SpringJMS and Jencks for a week, and googled with no luck for the following issues. - Re-queued messages only being redelivered after restarting AMQ - In my

Re: Using http transport from a Perl client

2008-02-28 Thread Ramit Arora
Hey James, Thanks for the prompt reply. I've already tried Stomp for talking to ActiveMQ, the performance is quite good. I've even modified the Net::Stomp module available on CPAN to handle transactions the master/slave topology of ActiveMQ. But we want to explore all possible ways for Perl