Return-Path: Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: (qmail 60481 invoked from network); 9 Sep 2010 19:58:20 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 9 Sep 2010 19:58:20 -0000 Received: (qmail 11374 invoked by uid 500); 9 Sep 2010 19:58:20 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 11333 invoked by uid 500); 9 Sep 2010 19:58:19 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 11325 invoked by uid 99); 9 Sep 2010 19:58:19 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Sep 2010 19:58:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Sep 2010 19:58:02 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o89JveiK024394 for ; Thu, 9 Sep 2010 19:57:40 GMT Message-ID: <23887936.13261284062260379.JavaMail.jira@thor> Date: Thu, 9 Sep 2010 15:57:40 -0400 (EDT) From: "Timothy Bish (JIRA)" To: dev@activemq.apache.org Subject: [jira] Created: (AMQNET-281) NMS ActiveMQ and Stomp providers fail to Parse a Uri with params on both the outer and inner Uri's MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: ae95407df07c98740808b2ef9da0087c X-Virus-Checked: Checked by ClamAV on apache.org NMS ActiveMQ and Stomp providers fail to Parse a Uri with params on both the outer and inner Uri's -------------------------------------------------------------------------------------------------- Key: AMQNET-281 URL: https://issues.apache.org/activemq/browse/AMQNET-281 Project: ActiveMQ .Net Issue Type: Bug Components: ActiveMQ, Stomp Affects Versions: 1.4.0 Reporter: Timothy Bish Assignee: Timothy Bish Priority: Minor Fix For: 1.4.0 Some Uri string that are formatted as below can fail parse in the ConnectionFactory BrokerUri set property as the .NET Uri class returns the inner query string portion in this case. {noformat} activemq:failover:(tcp://${activemqhost}:61616?keepAlive=false&wireFormat.maxInactivityDuration=1000)" activemq:failover:(tcp://${activemqhost}:61616?keepAlive=false&wireFormat.maxInactivityDuration=1000)?connection.asyncclose=false" {noformat} In the first Uri the Query string returned is: {noformat} ?keepAlive=false&wireFormat.maxInactivityDuration=1000) {noformat} and in the second its {noformat} ?keepAlive=false&wireFormat.maxInactivityDuration=1000)?connection.asyncclose=false {noformat} We need to modify the provider ConnectionFactory code to ensure that it doesn't use the inner Query params from the composite Uri. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.