NMS client libraries Apache.NMS.ActiveMQ.dll and Apache.NMS.dll - Version 1.2.0

2010-02-08 Thread pshar...@sapient.com
Hi, We are in the process of using Apache NMS dll's for implementing Transactional handling. In version 1.2.0, there is support of RedeliveryPolicy class. But as mentioned on website 'http://activemq.apache.org' - The NMS 1.2.0 Client Releases are still in progress. Can anyone please confirm on

initialRedeliveryDelay and maximumRedeliveries not working in "\progress\fuse-message-broker-5.3.0.4\conf\activemq.xml"

2010-02-04 Thread pshar...@sapient.com
Hi, I have made below changes at "\progress\fuse-message-broker-5.3.0.4\conf\activemq.xml". 1. When it comes to redelivery of a message. It does not wait for 30 seconds. 2. And even maximumRedeliveries are not just 4. It is getting delivered unlimited. In code, I am using

Re: TTL set to 30 seconds, but messages are not getting expired.

2009-08-19 Thread pshar...@sapient.com
Thanks for replying. I tried with this line of code. but still messages are not getting expired. TimeSpan timeSpan = new TimeSpan(0, 0, 30); this.producer.Send(bytesMessage, true, 1, timeSpan); pshar...@sapient.com wrote: > > I tried to test for TTL. But it is not working fine. >

TTL set to 30 seconds, but messages are not getting expired.

2009-08-19 Thread pshar...@sapient.com
I tried to test for TTL. But it is not working fine. I check messages @ "http://localhost:8161/admin";. Messages are not getting expired after specified time. public void SendMessage(IBusMessage busMessage) { if (!this.isDisposed) { IBytesMe