Re: Embedded broker hangs after restart

2009-03-27 Thread Jarosław Pałka
Gary, I have attached the test case as you asked. Is there any other way I can help to resolve this issue? Regards, Jarek W dniu 26 marca 2009 23:59 użytkownik Gary Tully napisał: > Hi Jarek, > great that it reproduced easily. That test case should be fine. > I have created a jira issue to tra

Re: Embedded broker hangs after restart

2009-03-26 Thread Gary Tully
Hi Jarek, great that it reproduced easily. That test case should be fine. I have created a jira issue to track this: https://issues.apache.org/activemq/browse/AMQ-2185 Could you attach your test case to the issue (file attach) and grant the ASF license to your test. (tick the check box) thanks, G

Re: Embedded broker hangs after restart

2009-03-26 Thread Jarosław Pałka
Gary, It was not so hard to reproduce this exception as it looked to me in the beginning. Maybe it is not the best test case I have every written in my life, but at least I get the same error message. package com.assembla.client.impl.tests; import java.io.File; import java.net.URISyntaxException

Re: Embedded broker hangs after restart

2009-03-26 Thread Gary Tully
Jarek, good news, but that exception is ugly. It would be smashing if you could reproduce in a Junit tests case using just the JMS apis, but it may be difficult to reproduce. I think I need to turn the queue test case from AMQ-2149 into a Topic scenario. That may reproduce. 2009/3/26 Jarosław Pał

Re: Embedded broker hangs after restart

2009-03-26 Thread Jarosław Pałka
Gary, I did recommended changes. On the embedded broker side everything looks fine now. I restarted Jetty (embedded broker) many times and it worked. What is interesting I started to see some exceptions in my other application that is listening on the same ActiveMQ server. I think below schema wi

Re: Embedded broker hangs after restart

2009-03-26 Thread Gary Tully
Hi Jarek, some similar behaviour is expressed by issue AMQ-2149. One aspect of the problem is related to the persistent index used by the Kaha store. You could try using a VM (in memory) index to see if it helps in your case. To configure set th

Re: Embedded broker hangs after restart

2009-03-26 Thread Jarosław Pałka
Sorry I forgot to copy embedded broker configuration: public abstract class UMMClientConfiguration extends ConfigurationSupport{ private static final String OUTGOING_LOCAL_TOPIC = "OUTGOING"; private static final String INCOMING_LOCAL_TOPIC = "INCOMING"; @Bean public BrokerServic

Embedded broker hangs after restart

2009-03-26 Thread Jarosław Pałka
Hi, I have strange behavior of embedded ActiveMQ 5.2 broker. I have an web application running under Jetty 1.6.14 (with Spring 2.5.6). I have embedded broker that is connected to ActiveMQ server through JMS connector.I have to topics INCOMING and OUTGOING that retrieve and forward messages to Act