Return-Path: Delivered-To: apmail-geronimo-activemq-dev-archive@www.apache.org Received: (qmail 63942 invoked from network); 25 Jul 2006 06:52:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Jul 2006 06:52:43 -0000 Received: (qmail 65545 invoked by uid 500); 25 Jul 2006 06:52:43 -0000 Delivered-To: apmail-geronimo-activemq-dev-archive@geronimo.apache.org Received: (qmail 65518 invoked by uid 500); 25 Jul 2006 06:52:43 -0000 Mailing-List: contact activemq-dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-dev@geronimo.apache.org Received: (qmail 65509 invoked by uid 99); 25 Jul 2006 06:52:42 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jul 2006 23:52:42 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jul 2006 23:52:42 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 1FDFF714219 for ; Tue, 25 Jul 2006 06:50:23 +0000 (GMT) Message-ID: <28446095.1153810223127.JavaMail.jira@brutus> Date: Mon, 24 Jul 2006 23:50:23 -0700 (PDT) From: "james strachan (JIRA)" To: activemq-dev@geronimo.apache.org Subject: [jira] Created: (AMQ-843) temporary queues seem to not work properly in C# when trying to implement request response MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N temporary queues seem to not work properly in C# when trying to implement request response ------------------------------------------------------------------------------------------ Key: AMQ-843 URL: https://issues.apache.org/activemq/browse/AMQ-843 Project: ActiveMQ Issue Type: Bug Components: NMS (C# client) Reporter: james strachan The following code seems to fail... //Send msg to common q with reply to temp q. ITemporaryQueue tempQ = session.CreateTemporaryQueue(); rqstMsg.NMSReplyTo = tempQ; rqstMsg.NMSPersistent = false; producer.Send(rqstMsg); //Get msg from common q. ActiveMQTextMessage request = consumer.Receive(new TimeSpan(0, 0, 5)) as ActiveMQTextMessage; ITextMessage response = session.CreateTextMessage("this is a response!!"); response.NMSCorrelationID = request.NMSCorrelationID; IMessageProducer producerTempQ = session.CreateProducer( request.NMSReplyTo); //Write msg to temp q. producerTempQ.Send(response); //EXCEPTION: QUEUE DOESNT EXIST -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/activemq/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira