Re: ActiveMQ: Advisory for MessageConsumed

2011-06-07 Thread karen
Hi Gary, Thanks for replying. I have logged a Jira for the issue: https://issues.apache.org/jira/browse/AMQ-3361 thanks -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-Advisory-for-MessageConsumed-tp3547010p3578728.html Sent from the ActiveMQ - User mailing

[ANN] Habari ActiveMQ Client 2.8 for Delphi and Free Pascal released

2011-06-07 Thread mjustin
June 7, 2011 - Habarisoft is pleased to announce release 2.8 of its client library for the Apache ActiveMQ open source message broker, which is also the default JMS provider in the Apache Geronimo open source application server and IBM WebSphere Application Server Community Edition. New in

Re: UDP Transport connector binds to a random port number.

2011-06-07 Thread Gary Tully
think that is the case, new tests are always welcome. submit one with your patch, it will protect your changes into the future. On 6 June 2011 17:54, Amir a.malekp...@gmail.com wrote: By the way, as a side note, its pretty weird this bug hadn't been discovered before because UDP actually did

Re: Keeping the messages in a queue or topic during a day

2011-06-07 Thread Gary Tully
have a peek at the tests: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/test/retroactive/ you need to configure a recovery policy on the destinations via the broker xml configuration. the default policy is to not hold on to any messages. On 6 June

Dynamic Queue Creation Issue

2011-06-07 Thread Yuvaraj Vanarase
Hi, I am creating queues dynamically(as of now testing with 2 only). Every time I create new connection at sender side (connection-session-queue-sender) and also new connection to create message listeners. Creation of 2 queues happens 1 minute interval. I could see that for first queue

Re: Stomp EOFException logged

2011-06-07 Thread Dejan Bosanac
Hi James, this exception just means that the client closed the connection to the broker unexpectedly. It would be helpful if you could find a way to reproduce what you're seeing. Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and

Connection problem in using Activemq-CPP

2011-06-07 Thread Radha Manickam
Hi All, I am using activemq-cpp 3.4.0, apache-log4cxx 0.10.0, apr 1.3.8, apr-util 1.3.9 in my library. And i am using HPUX 11iV2 and aCC for compiling. I am successfully compiled the above said libraries and also my library. But when i executed a sample using my library, I am not able to get

Integrate own Authentication map

2011-06-07 Thread Laures
Hi, i implemented my own Authentication Map class and want to configure ActiveMQ so it uses it. Can anybody explain how i can do that? Greetings, Alexander -- View this message in context: http://activemq.2283324.n4.nabble.com/Integrate-own-Authentication-map-tp3579459p3579459.html Sent from

Re: Connection problem in using Activemq-CPP

2011-06-07 Thread Timothy Bish
On Tue, 2011-06-07 at 05:03 -0700, Radha Manickam wrote: Hi All, I am using activemq-cpp 3.4.0, apache-log4cxx 0.10.0, apr 1.3.8, apr-util 1.3.9 in my library. And i am using HPUX 11iV2 and aCC for compiling. I am successfully compiled the above said libraries and also my library. But

Re: Integrate own Authentication map

2011-06-07 Thread Dejan Bosanac
Take a look at http://activemq.apache.org/interceptors.html for more info on how to develop and install custom plugins. Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Action -

Re: Stomp EOFException logged

2011-06-07 Thread James Green
Good question. Only thing I can say is that it's a reasonably large XML packet being posted. I will try to find the size of it in a debug session. Is there a timeout period during a send perhaps that should be tweaked? On 7 June 2011 11:59, Dejan Bosanac de...@nighttale.net wrote: Hi James,

Re: Integrate own Authentication map

2011-06-07 Thread Laures
Hi, i just tried to install the authenticationPlugin with my map by defining the plugin with a bean-tag inside the plugins tag. The result (with activemq 5.5) is org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'bean'. One of

occasional ConcurrentModificationException when creating a queue consumer

2011-06-07 Thread Steve Angelovich
All, Can anybody give me some ideas about why I get the ConcurrentModificationExcpetion below occasionally. We are running with version 5.5. The code that generates this exception is; LOG.fine(Create response queue) ; _session2 = _connection.createSession(false, Session.AUTO_ACKNOWLEDGE) ;

War stories plus Hints Tips wanted for ActiveMQ in a JBoss clustering context

2011-06-07 Thread Fred Moore
Hi folks, I need to design an ActiveMQ deploy in a JBoss clustered environment, where ActiveMQ MUST NOT be the weakest link in the chain, in terms of high availability provided to the [clustered] critical MDBs. Can anyone provide any war stories and hints tips on this particular scenario?

Re: KahaDB storage size grows despite almost no pending messages

2011-06-07 Thread Gary Tully
enable trace level logging for org.apache.activemq.store.kahadb.MessageDatabase, this will give details of the destinations that have references to data files. If possible, try and make a test case that can reproduce. On 4 June 2011 19:38, Martin C. mart...@gmx.at wrote: Hi, I experience the

How to set message expiry in activemq

2011-06-07 Thread agujral
Hi All, We are using active mq as a queueing layer in our system,from which consumers read messages. The consumers processes message by sending a message to the remote severs ,sometimes the remote servers are down causing a big backlog of messages .Is there a way in activemq so that we

Re: How to set message expiry in activemq

2011-06-07 Thread Marcelo Jabali
Hi Anurag, You can set Time to Live for each message the producer sends to ActiveMQ. That's set on the send method of the ActiveMQMessageProducer class. Take a look here [1]. You can also check the JMS specification since TTL (JMSExpiration) is part of the standard JMS. [1]

Re: How to set message expiry in activemq

2011-06-07 Thread Martin C.
Hi, have a look at http://download.oracle.com/javaee/1.4/api/javax/jms/MessageProducer.html#send(javax.jms.Message, int, int, long) on how to send messages with a time-to-live set. Best regards, Martin On Tue, Jun 7, 2011 at 9:00 PM, agujral anurag_guj...@yahoo.com wrote: Hi All,        We

Re: How to set message expiry in activemq

2011-06-07 Thread agujral
thanks everyone for your replies -- View this message in context: http://activemq.2283324.n4.nabble.com/How-to-set-message-expiry-in-activemq-tp3580498p3581356.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Monitoring of expired messages in activemq

2011-06-07 Thread agujral
Hi All, I am setting expiry of messages in activemq in my deployment. How can I monitor how many messages are getting expired . Please Suggest. Thanks Anurag -- View this message in context:

bridge HornetQ and ActiveMQ

2011-06-07 Thread Mark W
I am looking to bridge these two JMS systems. I have found some example bridging config files but they do not speak specifically to HornetQ. Has anyone done this before? Thanks, Mark

Re: Monitoring of expired messages in activemq

2011-06-07 Thread Marcelo Jabali
Anurag, The following should give all you need: http://activemq.apache.org/advisory-message.html -Marcelo On Jun 7, 2011, at 6:04 PM, agujral wrote: Hi All, I am setting expiry of messages in activemq in my deployment. How can I monitor how many messages are getting expired .

Active MQ as bridge or something else ?

2011-06-07 Thread Prasad
I have a JMS queue (on active mq broker) available on a remote machine which is behind corporate firewall and only a port is open so I can access it from one of my UNIX box within my network. Sometimes , I loose network connection with this remote Queue and my Java client running on my Unix box

Re: Connection problem in using Activemq-CPP

2011-06-07 Thread Radha Manickam
Hi Tim, I am using in the sameway that in the sample given in activemq-cpp. I am attaching the Makefile for the library with this reply. And the arguments for Makefile is as follows: make OS=hp-ux ARCH=64 VERSION=6.0.0.2 FLAGS=-mlp64 OSDEF=HPUX CXXCH=aCC