From activemq-users-return-1739-apmail-geronimo-activemq-users-archive=geronimo.apache.org@geronimo.apache.org Mon Jun 05 06:43:58 2006 Return-Path: Delivered-To: apmail-geronimo-activemq-users-archive@www.apache.org Received: (qmail 34262 invoked from network); 5 Jun 2006 06:43:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Jun 2006 06:43:58 -0000 Received: (qmail 15219 invoked by uid 500); 5 Jun 2006 06:43:57 -0000 Delivered-To: apmail-geronimo-activemq-users-archive@geronimo.apache.org Received: (qmail 15198 invoked by uid 500); 5 Jun 2006 06:43:57 -0000 Mailing-List: contact activemq-users-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-users@geronimo.apache.org Delivered-To: mailing list activemq-users@geronimo.apache.org Received: (qmail 15189 invoked by uid 99); 5 Jun 2006 06:43:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jun 2006 23:43:57 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of chirino@gmail.com designates 64.233.184.237 as permitted sender) Received: from [64.233.184.237] (HELO wr-out-0506.google.com) (64.233.184.237) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jun 2006 23:43:55 -0700 Received: by wr-out-0506.google.com with SMTP id 37so932933wra for ; Sun, 04 Jun 2006 23:43:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=EdhQnkDqabnZei1zRLCAb5jN/mXGOawYqr+dUwt/xAlca9d28AFTK/p/VXQAZGsOlfK40bjT1OGLDrIJlUdzTqZ0Rqhkqh6/H3JFwnOOwUXxpchWyvbKph5Y22/VQMulKpkTeG9sTo4WCQmvrCWCY1VsZHASLX3tq6UNbZM+I7E= Received: by 10.65.206.14 with SMTP id i14mr3179683qbq; Sun, 04 Jun 2006 23:43:34 -0700 (PDT) Received: by 10.65.218.1 with HTTP; Sun, 4 Jun 2006 23:43:34 -0700 (PDT) Message-ID: Date: Mon, 5 Jun 2006 01:43:34 -0500 From: "Hiram Chirino" Sender: chirino@gmail.com To: activemq-users@geronimo.apache.org Subject: Re: Persistance problems In-Reply-To: <4678101.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4678101.post@talk.nabble.com> X-Google-Sender-Auth: fa601a35c85581c1 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N When you browse messages in a amq 4 topic with jmx, your, browsing the messages that are being held in the subscription recovery policy configured for that topic. We don't provide a way to browse the messages being help for a durable topic subscription yet. On 6/2/06, ENP wrote: > > I have incubator-activemq-4.0 with config: > > > > > > > > > > > > > After running with code: > > ActiveMQConnection connection = ActiveMQConnection.makeConnection(); > connection.start(); > Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); > Destination destination = session.createTopic("monitoring.m1"); > MessageProducer producer = session.createProducer(destination); > String text = "Hello world! From: " + Thread.currentThread().getName(); > TextMessage message = session.createTextMessage(text); > System.out.println("Sent message: "+ message.hashCode() + " : " + > Thread.currentThread().getName()); > producer.send(message); > session.close(); > connection.close(); > > I see new message via JMX (I use jManage) > > After restarting AMQ I can't see this message and I can't see topic > "monitoring.m1"! > > Why can it be? > -- > View this message in context: http://www.nabble.com/Persistance-problems-t1722163.html#a4678101 > Sent from the ActiveMQ - User forum at Nabble.com. > > -- Regards, Hiram