Re: The .NET Client recieve no message

2007-08-27 Thread Nydia
The problem had been resovled after I had changed the activemq from 5.0 to 4.1.1 Can't the V5.0 support the C# client?or I mistaken something? Nydia wrote: > > Hi,I run the simple test like the following : > https://svn.apache.org/repos/asf/activemq/activemq-dotnet/trunk/s

The .NET Client recieve no message

2007-08-27 Thread Nydia
Hi,I run the simple test like the following : https://svn.apache.org/repos/asf/activemq/activemq-dotnet/trunk/src/test/csharp/ActiveMQ/TestMain.cs but I recieved nothing,So I changed like this: // lets consume a message IMessageConsumer consumer = session.CreateConsumer(destination); consumer.

Re: Borrow prepareStatement f rom pool failed (JDBC + Mysql)

2007-07-29 Thread Nydia
i fixed the problem,it was about the jdbc-driver of the mysql -- View this message in context: http://www.nabble.com/Borrow-prepareStatement-from-pool-failed-%EF%BC%88JDBC-%EF%BC%8B-Mysql%EF%BC%89-tf4155991s2354.html#a11858487 Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Borrow prepareStatement fro m pool failed (JDBC + Mysql)

2007-07-27 Thread Nydia
I use the JDBC+Mysql for persistent,and the activemq-xml's configure just like the follows(I think has no error): I had crea

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

2007-07-22 Thread Nydia
nmittler wrote: > > If you want your consumer (even a durable one) to receive the messages, it > would have to have been registered on the topic before the message was > sent. At that point, you could kill your consumer and bring it back up > and > it will get the messages it missed. > > The

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

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

2007-07-18 Thread Nydia
I sent the topic message using persistent: destination = session->createTopic( "TEST.FOO" ); producer = session->createProducer( destination ); producer->setDeliveryMode( DeliveryMode::PERSISTENT ); .. producer->send( message ); and recived the message with the codes: destination = ses