From users-return-537-apmail-qpid-users-archive=qpid.apache.org@qpid.apache.org Mon Dec 29 14:49:54 2008 Return-Path: Delivered-To: apmail-qpid-users-archive@www.apache.org Received: (qmail 42225 invoked from network); 29 Dec 2008 14:49:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Dec 2008 14:49:54 -0000 Received: (qmail 65345 invoked by uid 500); 29 Dec 2008 14:49:54 -0000 Delivered-To: apmail-qpid-users-archive@qpid.apache.org Received: (qmail 65328 invoked by uid 500); 29 Dec 2008 14:49:53 -0000 Mailing-List: contact users-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@qpid.apache.org Delivered-To: mailing list users@qpid.apache.org Received: (qmail 65317 invoked by uid 99); 29 Dec 2008 14:49:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Dec 2008 06:49:53 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of adam.chase1@gmail.com designates 74.125.44.29 as permitted sender) Received: from [74.125.44.29] (HELO yx-out-2324.google.com) (74.125.44.29) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Dec 2008 14:49:46 +0000 Received: by yx-out-2324.google.com with SMTP id 8so1407221yxb.69 for ; Mon, 29 Dec 2008 06:49:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=SFyq3S8whAdIi4lGK4G3hhBqo8I0GkuNtZDWE3sJjok=; b=Q+KgP8UjtBGeog0j1jIxz6IqbQRTM+/Az0GfIR6wxsVdEuBFhEHcOYmVmDxfgfQltm 4n8ABE8sdkIXyAIr1EchbSQhNqeKHnMzT34itsb9h4VWNe+g5IlJ35MOgSZxOJZEhx+w TCPuk79srjXqYIybKLe/ujhbeCIbHXpeuEcj0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=rVrAyFuWbvcuYxCp15vR9cni+2lGwHLp3Im733TXxw0Y15ZhN0dbH3k9TNydVpCltb /fLl+dcPMy8F2Xx8lboAeIWl+WxX5L08XcKB+aVm7lVuq/mjh4kpFcmxTxNC0XrgNeIz tCwl36UjLpEi2BE2peQCGWle+VtLlMc4gRgKQ= Received: by 10.90.80.18 with SMTP id d18mr6554715agb.71.1230562164987; Mon, 29 Dec 2008 06:49:24 -0800 (PST) Received: by 10.90.49.1 with HTTP; Mon, 29 Dec 2008 06:49:24 -0800 (PST) Message-ID: <17e364b30812290649u1c531af9p5361947ad1b99300@mail.gmail.com> Date: Mon, 29 Dec 2008 09:49:24 -0500 From: "Adam Chase" To: users@qpid.apache.org Subject: Durable Queues with beta cpp client/broker? MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org When I declare my queues: session.queueDeclare(arg::queue="message_queue3", arg::durable=true); session.exchangeBind(arg::exchange="amq.direct", arg::queue="message_queue3", arg::bindingKey="routing_key3"); I then publish a bunch of persistent messages to the exchange with this routing key. (My consumer can get messages off of the queue at this point). Then I kill 'qpidd '. I restart qpidd. Then I try to consume from the queue and I get: not-found: not-found: Queue not found: message_queue3. Am I misunderstanding something or is this a bug? Thanks, Adam