Re: kaha store corrupted ? 100% CPU on ActiveMQ restart

2007-07-19 Thread Tom Samplonius
- "smo" <[EMAIL PROTECTED]> wrote: > Hi! > I am facing a problem on restarting ActiveMQ. > The CPU is at 100% and ActiveMQ is not available. The console hangs on > this > line : > INFO KahaStore - Kaha Store using data > directory > c:\ActiveMQ\activemq-data\kaha.db > Her

Re: question about c++ client(DeliveryMode::PERSISTENT )

2007-07-19 Thread Nydia
nmittler wrote: > > Is it possible that you're sending the message before you've created the > consumer? > > yes ,first I run the producer,after finishing the sending,I run the consumer to recive the message.because,I thought,the message is persistent,and the consumer is DurableConsumer ,I cou

Re: Apache 2.2 and file-descriptors

2007-07-19 Thread Tom Samplonius
- [EMAIL PROTECTED] wrote: > Hi, > > We are running a SunOS 5.9 box, with apache 2.2.4... and we have run > out > of inodes, is any possible way for increasing file descriptors > without > having stdio issues or other like issues? it's a production machine > and > I'm playing with my job :(..

Transport exception in ActiveMQ 4.1.0 logs at debug level

2007-07-19 Thread aakture
I was trouble shooting a transport failure error message in my client, and had turned up the ActiveMQ log to DEBUG. I happened to see the following message logged at debug in the ActiveMQ log, although I was not able to reproduce the exception I was seeing in my client during this same test run. I

How to deploy activemq-web-demo into Tomcat server?

2007-07-19 Thread xinwuqingdao
The activemq-web-demo downloaded directlry internet can be build and run using mvn jetty:run. But right now, I am try to deploy activemq-web-demo into Tomcat server. After deploying it to Tomcat, the portfoli example stops working. Can anyone tell me how to deploy activemq-web-demo into Tomcat? I

Re: kaha store corrupted ? 100% CPU on ActiveMQ restart

2007-07-19 Thread Rob Davies
looks like Kaha store is corrupted :( On Jul 19, 2007, at 4:28 PM, smo wrote: Hi! I am facing a problem on restarting ActiveMQ. The CPU is at 100% and ActiveMQ is not available. The console hangs on this line : INFO KahaStore - Kaha Store using data directory c:\ActiveM

Re: Trying to get started: how do I configure Tomcat to run ActiveMQ?

2007-07-19 Thread wbickford
I got frustrated with trying to setup jndi configuration when trying to run as an embedded server. I'm using Resin (not Tomcat) - I configured directly from a java startup servlet. This might help if you just want to get it running, probably would work with Tomcat. Here's what I did: 1) Copied

HSQLDB and Spring config?

2007-07-19 Thread Dave Syer
I can see here (http://activemq.apache.org/jdbc-support.html) that HSQLDB is a "supported" platform, and I can see the HsqlJDBCAdapter class in my classpath. BUt I don't get how to configure AMQ to work with an HSQLDB database. I tried it and got an SQLException to do with invalid SQL ("SELECT .

Re: Trying to get started: how do I configure Tomcat to run ActiveMQ?

2007-07-19 Thread Bruce Snyder
On 7/19/07, Henk van Voorthuijsen <[EMAIL PROTECTED]> wrote: It all looks very sensible - however, all how-to's I encountered so far tell me how to configure a broker, or a receiver or a sender - but not together! So now the question becomes: how do I set up a sender and receiver so that they c

Re: Trying to get started: how do I configure Tomcat to run ActiveMQ?

2007-07-19 Thread Henk van Voorthuijsen
It all looks very sensible - however, all how-to's I encountered so far tell me how to configure a broker, or a receiver or a sender - but not together! So now the question becomes: how do I set up a sender and receiver so that they can actually communicate (using JNDI lookup if possible)? -- Vi

kaha store corrupted ? 100% CPU on ActiveMQ restart

2007-07-19 Thread smo
Hi! I am facing a problem on restarting ActiveMQ. The CPU is at 100% and ActiveMQ is not available. The console hangs on this line : INFO KahaStore - Kaha Store using data directory c:\ActiveMQ\activemq-data\kaha.db Here are the logs : http://www.nabble.com/file/p11691575/act

Re: Database Locking issues

2007-07-19 Thread Dave Syer
How do you disable the exclusive lock? Ideally a solution involving Spring configuration works best for me. I am trying to do the same thing as the original post (where the platform was pretty obviously HSQLDB, by the way). I guess the HSQLDB support isn't as complete as it might be? Or Am I

Re: question about c++ client(DeliveryMode::PERSISTENT )

2007-07-19 Thread Nathan Mittler
Is it possible that you're sending the message before you've created the consumer? On 7/18/07, Nydia <[EMAIL PROTECTED]> wrote: I sent the topic message using persistent: destination = session->createTopic( "TEST.FOO" ); producer = session->createProducer( destination ); producer->setDel