Re: ActiveMQConnection:1653 - Async exception with no exception listener: java.net.SocketException: socket closed

2008-04-08 Thread Hatta
hi Raj, Thanks for note and i ve did as what u ve advised. Result: No more exceptions such as reported being generated in the logs. (Two thumbs up!) However, I would like to point out what was observed by other activemq users have spotted as well. Its regarding the Spring DispatchServlet. Acti

Re: wrong exception thrown?

2008-04-08 Thread jackrabbit
Ok, I'll post a bug report. rajdavies wrote: > > yes it should be! - want to raise a jira? > On 8 Apr 2008, at 16:19, jackrabbit wrote: >> Hi, >> >> when sending a message to a deleted TemporaryQueue, ActiveMQ threw a >> JMSException. Shouldn't that be an InvalidDestinationException? >> The exc

Re: completely disabling Kaha Store

2008-04-08 Thread Rob Davies
Unfortunately you need to set any persistence parameters before adding a connector ... On 9 Apr 2008, at 00:44, yg_cvg wrote: Oddly enough, doing m_broker = BrokerFactory.createBroker("broker:()? persistent=false"); instead of the first line below fixed the problem. Also, a bunch

Re: Building 32-bit

2008-04-08 Thread sfred
Vic, I appreciate you taking the time to write this information, but I guess I didn't provide enough information for you to answer the problem I'm having. 1. I'm trying to build ActiveMQ-CPP (not ActiveMQ). (I know the process is the same for either one, but I thought I'd be clear.) 2. I'm

Re: Building 32-bit

2008-04-08 Thread vschrader
Fred, you don't mention it, but of course you need to have cppunit compiled as a prerequisite. As far as autogen.sh, you just run it or say './autogen.sh', and generate an executable rwxr-xr-x shell script called configure. If you just say ./configure with no options, it will generate a Makefile

Re: Java to .NET using NMS

2008-04-08 Thread Jim Gomes
That's an idea. We will need to contact the author to see if he would be willing to have his stuff re-posted on the site. On Tue, Apr 8, 2008 at 8:06 PM, Andrew M <[EMAIL PROTECTED]> wrote: > Maybe it would be better to add the article text instead of links in case > the links go bad. > > -O

RE: Java to .NET using NMS

2008-04-08 Thread Andrew M
Maybe it would be better to add the article text instead of links in case the links go bad. -Original Message- From: Jim Gomes [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 08, 2008 3:46 PM To: users@activemq.apache.org Subject: Re: Java to .NET using NMS Added the links to those four a

Configuring a custom SubscriptionRecoveryPolicy

2008-04-08 Thread Bob G.
Hello, When my Subscriber connect to my Topic, I would like to resend a specific group of messages. I cannot use any of the Recovery Policies listed here http://activemq.apache.org/subscription-recovery-policy.html. How do I configure or inject my custom SubscriptionRecoveryPolicy Bean into the

Re: completely disabling Kaha Store

2008-04-08 Thread yg_cvg
Oddly enough, doing m_broker = BrokerFactory.createBroker("broker:()?persistent=false"); instead of the first line below fixed the problem. Also, a bunch of warnings about JMX (which I also explicitly tried to disable before) went away. I'm not really sure why it fixed it, but it did. Bas

completely disabling Kaha Store

2008-04-08 Thread yg_cvg
I am embedding an ActiveMQ broker directly inside an app (long story). I am doing so explicitly with Java code (i.e., "broker = new BrokerService();", etc.). I would like to completely avoid any writing of files when performing normal JMS tasks, such as sending and receiving messages (again, lon

Re: Java to .NET using NMS

2008-04-08 Thread Jim Gomes
Added the links to those four articles from the main NMS index page. On 4/1/08, Oleg Deribas <[EMAIL PROTECTED]> wrote: > battand wrote: > > > Check out the top 4 links on this page. > > > > http://remark.wordpress.com/articles/ > > Great articles. They are worth a link from NMS page. > > -- > O

Re: Problem building libOpenWire using Maven

2008-04-08 Thread Bradley Mitchell
As an update, I have tried using the tag to set the path for maven to look for the parent pom (I assume that is what Maven is looking for based on the error messages.) but so far no luck. Also, based on the pom guide on the maven website, I thought that maven would look in the local repository f

Re: Release dates

2008-04-08 Thread Dhruba Bandopadhyay
Thanks for reply. We eagerly look forward to 4.1.2. On Tue, Apr 8, 2008 at 4:42 PM, Guillaume Nodet <[EMAIL PROTECTED]> wrote: > 4.1.2 is currently being released, so it should be out very soon (end of > this week or next week). > Not sure for 5.1, though. > > On Tue, Apr 8, 2008 at 3:50 PM, D

Re: Duplex question

2008-04-08 Thread Rob Davies
On 8 Apr 2008, at 17:33, jimmyfrank wrote: I'm using 4/08 snapshot. I have broker A connecting to broker B. I have duplex="true" on broker A. The connection is fine and I can send messages from broker A to broker B. My question is, if I create a queue on broker A, what is the correct w

Re: NMS library hangs when connection to ActiveMQ is broken

2008-04-08 Thread Jim Gomes
I have checked in a fix for the timeout looping issue. I have more changes coming, but I felt that these changes were important enough to get checked in as soon as possible. Dealing with error handling code is difficult. If anyone having this particular problem would care to get the latest trunk

Duplex question

2008-04-08 Thread jimmyfrank
I'm using 4/08 snapshot. I have broker A connecting to broker B. I have duplex="true" on broker A. The connection is fine and I can send messages from broker A to broker B. My question is, if I create a queue on broker A, what is the correct way to set the URI to reference a queue on broker A

Activemq message selectors performance

2008-04-08 Thread Vinod Venkatraman
Hi, I am using AMQ 4.1.1. I observe that when I provide a message selector my consumer does not consume any messages till all the messages on the queue was scanned. I tried setting consumer prefetch to 100 but even then the complete queue (100K messages each of size 100KB) is scanned before my co

Re: Release dates

2008-04-08 Thread Guillaume Nodet
4.1.2 is currently being released, so it should be out very soon (end of this week or next week). Not sure for 5.1, though. On Tue, Apr 8, 2008 at 3:50 PM, Dhruba Bandopadhyay <[EMAIL PROTECTED]> wrote: > Hi, > > Are there any provisional rough release dates or time frames for 4.1.2 and > 5.1? >

Re: wrong exception thrown?

2008-04-08 Thread Rob Davies
yes it should be! - want to raise a jira? On 8 Apr 2008, at 16:19, jackrabbit wrote: Hi, when sending a message to a deleted TemporaryQueue, ActiveMQ threw a JMSException. Shouldn't that be an InvalidDestinationException? The exception was thrown at ActiveMQSession.java:1583 (ActiveMQ 5.0.0)

wrong exception thrown?

2008-04-08 Thread jackrabbit
Hi, when sending a message to a deleted TemporaryQueue, ActiveMQ threw a JMSException. Shouldn't that be an InvalidDestinationException? The exception was thrown at ActiveMQSession.java:1583 (ActiveMQ 5.0.0). thanks, jackrabbit -- View this message in context: http://www.nabble.com/wrong-excep

Re: Persistence From Redo Log Only?

2008-04-08 Thread unknown12
Same here! Each time i restart (shutdown/start) AMQ5|5.1 the KAHA store is recovered and any message will be redelivered...Additionally the output of the admin web console looks strange and is quite unusable (negative number of messages pending or an empty message list is being displayed when cli

Re: Queue eviction policy

2008-04-08 Thread jgunz
rajdavies wrote: > > >> >> I dug through the website and the mailing list and am still a bit >> confused... >> >> Is there a way to set a maximum size (either by message count or >> memory >> size) on a specific Queue? >> >> Is there a way to specify an eviction policy, in the way you can f

Release dates

2008-04-08 Thread Dhruba Bandopadhyay
Hi, Are there any provisional rough release dates or time frames for 4.1.2 and 5.1? Thanks.

Re: ActiveMQConnection:1653 - Async exception with no exception listener: java.net.SocketException: socket closed

2008-04-08 Thread Rob Davies
I think this problem will go away if you use the latest 5.1 snapshot - please let us know if this is not the case On 8 Apr 2008, at 10:45, Hatta wrote: Hi Dil, Yes, I have received the same thing. I have browse thru all the related issue in AMQ 5.0.0 but non avail. Appreciate a respons

Problem building libOpenWire using Maven

2008-04-08 Thread Bradley Mitchell
I am using Cygwin and gcc on my computer . I have already built the APR in Cygwin. I also have ActiveMQ working in Cygwin. I would like to use a C client to interface with ActiveMQ. When I try to build libOpenWire using Maven in the same folder with libOpenWire's pom.xml, I get a number of errors

Re: ActiveMQConnection:1653 - Async exception with no exception listener: java.net.SocketException: socket closed

2008-04-08 Thread Hatta
Hi Dil, Yes, I have received the same thing. I have browse thru all the related issue in AMQ 5.0.0 but non avail. Appreciate a response from the team about this matter. This log can be really disturbing when the solution goes to production. Regards Hatta Dil wrote: > > Did somebody see thi