ActiveMQ compilation in CC compiler in Solaris

2011-06-26 Thread Radha Manickam
Hi, I am getting the following error while compiling ActiveMQ-CPP in CC compiler in Solaris 10. /*libtool: compile: CC -DHAVE_CONFIG_H -I. -I../.. -m64 -mt -w -O5 -library=stlport4 -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -I/u01/kla-tencor/udb/KTFL/Libraries/64bit/include/apr-1 -I/

Re: message lost under persistent and sync sending mode

2011-06-26 Thread Timothy Bish
On Sun, 2011-06-26 at 19:07 -0700, jessezbj wrote: > message lost under persistent and sync sending mode, > > according to many documents, persistent and sync sending mode should be > reliable. > > > How to resolve this problem? The best way to get help is to submit a unit test that reprodu

message lost under persistent and sync sending mode

2011-06-26 Thread jessezbj
message lost under persistent and sync sending mode, according to many documents, persistent and sync sending mode should be reliable. How to resolve this problem? -- View this message in context: http://activemq.2283324.n4.nabble.com/message-lost-under-persistent-and-sync-sending-mode-tp3

Re: Junit Testing Master/Slave Program Hangs forever..

2011-06-26 Thread Stan Lewis
move the calls to "waitUntilStarted" so they're *after* the calls to start the master and slave, should do the trick... On Fri, Jun 24, 2011 at 3:55 PM, Vijay wrote: > For Junit testing failover , I want to start Master/slave instances with > following piece of code. After Master starts, it hangs

Is it OK to do sending in Consumers onMessage function?

2011-06-26 Thread jessezbj
If I do sending in onMessage function under persistent and sync mode. Is it fine? Will it cause deadlock in some cases? Or should I create a new thread to do sending? -- View this message in context: http://activemq.2283324.n4.nabble.com/Is-it-OK-to-do-sending-in-Consumers-onMessage-function-