Return-Path: Delivered-To: apmail-camel-dev-archive@www.apache.org Received: (qmail 87737 invoked from network); 15 Sep 2009 03:49:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Sep 2009 03:49:37 -0000 Received: (qmail 94505 invoked by uid 500); 15 Sep 2009 03:49:37 -0000 Delivered-To: apmail-camel-dev-archive@camel.apache.org Received: (qmail 94418 invoked by uid 500); 15 Sep 2009 03:49:37 -0000 Mailing-List: contact dev-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list dev@camel.apache.org Received: (qmail 94403 invoked by uid 500); 15 Sep 2009 03:49:36 -0000 Delivered-To: apmail-activemq-camel-dev@activemq.apache.org Received: (qmail 94400 invoked by uid 99); 15 Sep 2009 03:49:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Sep 2009 03:49:36 +0000 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Sep 2009 03:49:33 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 3AC3D234C052 for ; Mon, 14 Sep 2009 20:49:12 -0700 (PDT) Message-ID: <2134608954.1252986552236.JavaMail.jira@brutus> Date: Mon, 14 Sep 2009 20:49:12 -0700 (PDT) From: "Willem Jiang (JIRA)" To: camel-dev@activemq.apache.org Subject: [jira] Created: (CAMEL-2014) support to set the query parameter from cxfrs uri 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 support to set the query parameter from cxfrs uri ------------------------------------------------- Key: CAMEL-2014 URL: https://issues.apache.org/activemq/browse/CAMEL-2014 Project: Apache Camel Issue Type: Improvement Components: camel-cxf Reporter: Willem Jiang Assignee: Willem Jiang Fix For: 2.1.0 Here is an user requirement to set the webclient's parameter from cxfrs URI {code} cxfrs://http://localhost:9010/templatetest/TID/ranges/start=0;end=1?q1=11&q2=12 {code} There's one matrix parameter (end1) and two query parameters (q1 and q2). rather than setting the query parameters on the endpoint you should set them on the WebClient. {code} WebClient client = WebClient.create("http://localhost:9010/templatetest/TID/ranges/start=0;end=1"); for every query parameter { client.query(name, value); } {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.