Re: *** GMX Spamverdacht *** Re: how to save topics and messages in mysql database

2010-09-17 Thread Martin C.
Hi, On Thu, Sep 16, 2010 at 9:38 AM, pp wrote: > For activemq must we have the broker(activemq) at every subscriber's server > ? No, you just need one server (broker) to which all clients connect to. Best regards, Martin

Re: how to save topics and messages in mysql database

2010-09-16 Thread pp
I have one more question. For activemq must we have the broker(activemq) at every subscriber's server ? -- View this message in context: http://activemq.2283324.n4.nabble.com/how-to-save-topics-and-messages-in-mysql-database-tp2539322p2541661.html Sent from the ActiveMQ - User mailing list arc

Re: how to save topics and messages in mysql database

2010-09-15 Thread pp
I have one more problem gary.. I am producing messages i have just overrite the onmessage method. its just increasing the enqueued msg in activemq admin but it is not displayng these messages in MySql database. What can be thje problem. Plz help me regarding this. -- View this message in co

Re: how to save topics and messages in mysql database

2010-09-15 Thread pp
thanks gary. my configuration file is http://www.springframework.org/schema/beans"; xmlns:amq="http://activemq.apache.org/schema/core"; xmlns:amqpersistenceadapter="http://activemq.apache.org/schema/core"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://w

Re: how to save topics and messages in mysql database

2010-09-15 Thread Gary Tully
is useExternalMessageReferences set on the jdbc persistence adapter? It defaults to false, to see the messages in the store it needs to be false. Maybe post your configuration. On 15 September 2010 07:49, pp wrote: > > thanks again. but one prob my activemq_msgs table is not showing the > destina

Re: how to save topics and messages in mysql database

2010-09-14 Thread pp
thanks again. but one prob my activemq_msgs table is not showing the destination_id column. and it only contain the reference of the message. -- View this message in context: http://activemq.2283324.n4.nabble.com/how-to-save-topics-and-messages-in-mysql-database-tp2539322p2539995.html Sent from

Re: how to save topics and messages in mysql database

2010-09-14 Thread Stan Lewis
Think Gary answered this for you in another thread, but in case you missed it in the activemq_msgs table there's a column that has the destination ID, this is for either topics or queues. On Tue, Sep 14, 2010 at 1:49 PM, pp wrote: > > thanks stan for ur help.. but i want to know where the topics

Re: how to save topics and messages in mysql database

2010-09-14 Thread pp
thanks stan for ur help.. but i want to know where the topics are created in the database . where these are save. because the database only contain three tables. none of the table contai the available topics or created topics. -- View this message in context: http://activemq.2283324.n4.nabble.co

Re: how to save topics and messages in mysql database

2010-09-14 Thread Stan Lewis
All of ActiveMQ's messages are stored in that activemq_msgs table, at least when you're sending persistent messages. Create a durable subscription on your topic and send some persistent messages to it, you'll see new entries get added to activemq_msgs. Note that once a message is ack'd it's remov