Re: Setting stomp wire format parameters

2008-06-12 Thread Rob Davies
Its worth looking at https://issues.apache.org/activemq/browse/AMQ-1739 In particular the last comment from vik dhawan cheers, Rob On 13 Jun 2008, at 00:21, bwtaylor wrote: Ping. Anybody? This is hanging my server as I leak about 25 sockets a day until I hit the OS limit. bwtaylor wro

Re: AJAX Client Reconnect

2008-06-12 Thread Gul
hi Dan!! i am using your latest updated amq.js file with cook's prototype file and eliminate the amq_prototype_adapter.js.. the problem is that when i want to call AjaxServlet with the following code Ajax.Request(uri, { method: 'post', postBody: body, onSuccess: org.activemq.Amq.endBatch}); th

having problem with durable subscription

2008-06-12 Thread eaglepointe
Hi, I'm new to ActiveMQ and having problem with durable subscription, following code based on example code, === public void run() throws JMSException { ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(url

Re: Setting stomp wire format parameters

2008-06-12 Thread bwtaylor
Ping. Anybody? This is hanging my server as I leak about 25 sockets a day until I hit the OS limit. bwtaylor wrote: > > The configuring-wire-formats page, > http://activemq.apache.org/configuring-wire-formats.html , implies that > the options shown apply only to the openwire wire format. I am h

Re: Lost messages - not all messages sent to the queue are delivered to the message receiver

2008-06-12 Thread drjava
Thanks, Dave! It seems as though the cacheLevel setting did the trick. The pooled connection factory on the other hand resulted in no messages arriving on the receiver side. I admit that I was too lazy to find out if they had arrived at the queue at all. (Again I trust the JmsTemplate to report

Re: Reliable Multicast and AqtiveMQ

2008-06-12 Thread Rob Davies
On 12 Jun 2008, at 19:36, Kosta wrote: What is the state of Reliable Multicast protocol/transport ? -- View this message in context: http://www.nabble.com/Reliable-Multicast-and-AqtiveMQ-tp17806853p17806853.html Sent from the ActiveMQ - User mailing list archive at Nabble.com. I'm currently

Reliable Multicast and AqtiveMQ

2008-06-12 Thread Kosta
What is the state of Reliable Multicast protocol/transport ? -- View this message in context: http://www.nabble.com/Reliable-Multicast-and-AqtiveMQ-tp17806853p17806853.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

ActiveMQ-CPP Version 2.2 RC2

2008-06-12 Thread Timothy Bish
Hey everyone, It's official ... ActiveMQ-CPP v2.2 now has a new release candidate, RC2. We've also found and fixed numerous bugs along the way. I've created a download page here: http://activemq.apache.org/cms/activemq-cpp-22-release.html ... Feel free to give it a test drive! The more eyes we

Re: persistent messages for durable subscribers are not purged from disc

2008-06-12 Thread Duro
Hi, I have created jira with two simple java classes. AMQ-1797. rajdavies wrote: > > Hi juraj, > > could you create a jira - with a junit test case attached ? > > thanks, > > Rob > On 12 Jun 2008, at 13:48, Duro wrote: > >> >> Hi all, >> I have some problems with multiple durable subscriber

Re: Lost messages - not all messages sent to the queue are delivered to the message receiver

2008-06-12 Thread Joshua Smith
drjava- I have heard of people having trouble with JUnit when they start using multiple threads because JTest relies on the Exception mechanism and is only watching the main thread. I'm not sure if that applies in your case because it doesn't look like you're making assertions within a separate th

Re: Lost messages - not all messages sent to the queue are delivered to the message receiver

2008-06-12 Thread Dave Stanley
I think this may be a problem on the consumer side given you are using the Spring DMLC with no connection caching. The connection will be recycled each time, but this can cause problems if your prefetch policy is not aligned. Try using a pooled connection factory, also try and set the DMLC cacheLe

Re: 5.2 release schedule?

2008-06-12 Thread sgm
On 6/11/08, Rob Davies <[EMAIL PROTECTED]> wrote: > > On 11 Jun 2008, at 11:36, Gregory Mostizky wrote: > > > > > Hello, > > > > Our team builds an application that is now going through our final stress > > tests before release. > > We discovered a memory leak in ActiveMQ 5.1 > > (https://issues.ap

Re: Tervela vs ActiveMQ + appropriate Network Infrastructure

2008-06-12 Thread Rob Davies
On 12 Jun 2008, at 16:53, Kosta wrote: My friend mentioned about Tervela a while ago. Coming from the Java world and having been exposed to JMS implementations like Tibco EMS, Websphere MQ, ect this came as a surprise to me and I would like to know how messaging solutions based on ActiveMQ

Lost messages - not all messages sent to the queue are delivered to the message receiver

2008-06-12 Thread drjava
I am using ActiveMQ embedded in my Junit test. I have a JmsMessenger that uses a JmsTemplate to send the messages and a MessageReceiver to receive the messages. The test goal is to verify that all messages that were sent were also received (compare numbers and the actual message objects for equali

Re: can't properly configure failover

2008-06-12 Thread dboucher
I've managed to create failover by passing in a uri of "failover:(tcp://...)". Still don't know why activemq 5.1.0 is acting up, though, if anyone has an idea. dboucher wrote: > > Hello, > > I am doing some research on ActiveMQ to use for a project. I am trying to > create an examplebroker ne

Re: Tervela vs ActiveMQ + appropriate Network Infrastructure

2008-06-12 Thread James Strachan
2008/6/12 Kosta <[EMAIL PROTECTED]>: > > My friend mentioned about Tervela a while ago. > Coming from the Java world and having been exposed to JMS implementations > like Tibco EMS, Websphere MQ, ect this came as a surprise to me and I would > like to know how messaging solutions based on ActiveMQ

Tervela vs ActiveMQ + appropriate Network Infrastructure

2008-06-12 Thread Kosta
My friend mentioned about Tervela a while ago. Coming from the Java world and having been exposed to JMS implementations like Tibco EMS, Websphere MQ, ect this came as a surprise to me and I would like to know how messaging solutions based on ActiveMQ (Plus appropriate Network Infrastructure) coul

Re: using spring to build ActiveMQ clients

2008-06-12 Thread James Strachan
Try camel? Put a bunch of files in a directory and just write from("file://somedirectory?noop=true").to("activemq:SomeQueue"); Then if you want configure your endpoint / connection factory to whatever QoS you need. http://activemq.apache.org/camel/ http://activemq.apache.org/camel/jms.html 2008

using spring to build ActiveMQ clients

2008-06-12 Thread Mark Webb
Can this be done? I would like to generate some simple test clients to try out my ActiveMQ servers but don't want to write code to handle all of my different situations. Thanks Mark

Re: TextMessage vs ByteMessage

2008-06-12 Thread marta_rn
First of all, thanks, Rob!! I want to send text messages, and there is a big possibility that the size of the message will be more than 2 GB. I'm afraid I'm a bit confused with this: >>OpenWire supports up to a theoretical 2GB limit for a TextMessage and this: >>The theoretical limit for all

Re: persistent messages for durable subscribers are not purged from disc

2008-06-12 Thread Rob Davies
Hi juraj, could you create a jira - with a junit test case attached ? thanks, Rob On 12 Jun 2008, at 13:48, Duro wrote: Hi all, I have some problems with multiple durable subscribers while persistent delivery is used. If I understand concept of durable/persistent subscription, message s

Re: TextMessage vs ByteMessage

2008-06-12 Thread Rob Davies
The theoretical limit for all messages is 2GB - but the reality is that if you want to send large messages (say 1mb or bigger) - you're best using a Blob message cheers, Rob On 12 Jun 2008, at 10:57, marta_rn wrote: Thanks Rob!! So, if I wanted to send a bigger TextMessage, what could I

persistent messages for durable subscribers are not purged from disc

2008-06-12 Thread Duro
Hi all, I have some problems with multiple durable subscribers while persistent delivery is used. If I understand concept of durable/persistent subscription, message should be deleted from disc storage (periodically) after all interested subscribers have received it. In case there was one durable

'org.apache.activemq.ra.ActiveMQResourceAdapter' should implement java.io.Serializable but does not

2008-06-12 Thread GeorgeM
Hi everybody, I deployed activemq RAR 5.1.0 (bundled in an EAR application) as an embedded broker on weblogic 9.2. It works as expected, but I get the following warning at the broker startup: class 'org.apache.activemq.ra.ActiveMQResourceAdapter' should implement java.io.Seri

Re: TextMessage vs ByteMessage

2008-06-12 Thread marta_rn
Thanks Rob!! So, if I wanted to send a bigger TextMessage, what could I do? Is there any way to increase that size? Should I use, for example, a BlobMessage or something like that? Which are the limits of each type of message? Thanks again Marta :-) rajdavies wrote: > > OpenWire supports

Re: TextMessage vs ByteMessage

2008-06-12 Thread Rob Davies
OpenWire supports up to a theoretical 2GB limit for a TextMessage cheers, Rob On 12 Jun 2008, at 10:34, marta_rn wrote: Hello all, I would like to know which is the maximum length of a TextMessage. Is there a limit? Thanks in advance, Marta rajdavies wrote: On 17 Apr 2008, at 22

Re: TextMessage vs ByteMessage

2008-06-12 Thread marta_rn
Hello all, I would like to know which is the maximum length of a TextMessage. Is there a limit? Thanks in advance, Marta rajdavies wrote: > > > On 17 Apr 2008, at 22:08, Rukus520 wrote: > >> >> Hi, >> >> Let's say I'm sending data in the form of xml. The data being sent >> is big >> bu