RE: how can i config to let amq remove the queue message when timeout

2011-12-27 Thread eric wen
hello, Stevo thank you very much for your prompt reply. you have enlightened me and finally i finished my work as what i want. thanks again. i'm using jms(amq5.5) with mule 3.1.2, what i want is to remove expired messages stored in amq automatically, and now my mule configuration file look

Re: Transaction not started XA problems

2011-12-27 Thread chudak
Did you ever solve this problem? I've been using atomikos, spring DMLC and activemq for several years. Recently I started using camel and we are having this exact same problem. With the camel endpoints polling (which effectively doubled the number of message listener containers I previously had) e

ANN: Habari Client for ActiveMQ 3.0 - Delphi and Free Pascal STOMP client library

2011-12-27 Thread Michael Justin
December 27, 2011 - Habarisoft is pleased to announce version 3.0 of its Delphi and Free Pascal client library for Apache ActiveMQ. With Habari Client for ActiveMQ, Delphi and Free Pascal developers can build integrated solutions, connecting applications using the peer-to-peer and the publish

RE: ActiveMq persistence in xml

2011-12-27 Thread Sheetal Kulkarni
Hi, Thanks a lot, I am trying for the 3rd point. Seeing messages in database as 'String' and not binary data. However now I am getting exception as below: Caused by: org.springframework.beans.factory.BeanCreationException: Error creati ng bean with name 'org.apache.activemq.xbean.XBeanBrokerServ

RE: ActiveMq persistence in xml

2011-12-27 Thread Yuvaraj Vanarase
Not clearly understood the requirement. However-- 1. if you would like to see message contents (readable I would say), let say using web console of activemq, then just clicking on message does that provided toString() method implemented accordingly for that class 2. if you would like to display

ActiveMq persistence in xml

2011-12-27 Thread Sheetal Kulkarni
Hi, Does anyone knows how i can store the activemq messages in form of xml? Currently it stores messages as binary in database, i want to have a application which reads messages from database and show some analysis of those messages. Please comment. Sheetal -- View this message in context: http

Re: Connection pooling - validation

2011-12-27 Thread Dejan Bosanac
We don't have that implemented (contributions are welcomed :), but the usual approach is to use failover transport ( http://activemq.apache.org/failover-transport-reference.html) which will ensure that connection is automatically reconnected when broker restarts. Regards -- Dejan Bosanac - http:

Re: Obtaining URLs of ActiveMQ instances

2011-12-27 Thread Stevo Slavić
org.apache.activemq.util.URISupport#isComposite is part of the public API, but has some strange behavior. No javadoc so can not say if it's working according to the contract or not. Last assert in following test fails: package org.apache.activemq.util; import java.net.URI; import java.net.URIS

Re: Connection pooling - validation

2011-12-27 Thread Stevo Slavić
Hi Dejan, I'm mostly interested in connection validation, but I see that Session and MessageProducer objects are being pooled as well. I'm using Spring's JmsTemplate and MessagListenerContainer and would like to make sure that they do not get "broken" pooled objects when ActiveMQ is down after it

Re: Connection pooling - validation

2011-12-27 Thread Dejan Bosanac
Hi Stevo, what kind of validation are you interested in? Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Mo