Return-Path: Delivered-To: apmail-cxf-users-archive@www.apache.org Received: (qmail 71607 invoked from network); 17 Sep 2009 20:33:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Sep 2009 20:33:47 -0000 Received: (qmail 33068 invoked by uid 500); 17 Sep 2009 20:33:46 -0000 Delivered-To: apmail-cxf-users-archive@cxf.apache.org Received: (qmail 32993 invoked by uid 500); 17 Sep 2009 20:33:46 -0000 Mailing-List: contact users-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@cxf.apache.org Delivered-To: mailing list users@cxf.apache.org Received: (qmail 32983 invoked by uid 99); 17 Sep 2009 20:33:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Sep 2009 20:33:46 +0000 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 rabelenda@gmail.com designates 209.85.219.209 as permitted sender) Received: from [209.85.219.209] (HELO mail-ew0-f209.google.com) (209.85.219.209) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Sep 2009 20:33:37 +0000 Received: by ewy5 with SMTP id 5so843259ewy.10 for ; Thu, 17 Sep 2009 13:33:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=ELRUzCPdO9V8Jtsrkf3WHFE3LuK1K025kQhu5FygPuI=; b=nbnZWbHtiIpk6Lv2B21O4KZGp+Z2thkepejFR5gITU1p0N50TUVke1n0bFjg5polsi KELDHlIUHby4dfuqUYwjfTqgdZ/5+eQduNe1hC21SdSUPDAo4lrVwMG6GKNUHxqEAEBh Y24pY/Rmrdwjaj7COHsqDky/Xual1wEQAHzyA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=FisWTh1lSkwYSx2SiuSUorAaNx40QVVNeZ2fID3chk4JLGyRfC0T6ay2SXQ4PaRLzW FtAbSWzcBeePrLy3Qul0GPBgCkzRafC51Re8K2MrNWzvIHD3F0WOg9BkP4YlAmTpXLBe oAWgYcLO0vh1mc8uev5PCPImRGT+FmErdBWqk= MIME-Version: 1.0 Received: by 10.216.93.66 with SMTP id k44mr333852wef.67.1253219596162; Thu, 17 Sep 2009 13:33:16 -0700 (PDT) From: Roger Abelenda Date: Thu, 17 Sep 2009 17:32:56 -0300 Message-ID: <975ae7d10909171332i431e207co6e4495148557b664@mail.gmail.com> Subject: URIMappingInterceptor and ServletController To: users@cxf.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org I think that I found a bug in line 251 of URIMappingInterface (version 2.2.3). When a parameter is specified in a URL of a web service without a value (like : http://localhost/myws?param1=val1¶m2=¶m3=val3) the code throws an exception of array out of index, I think that a solution is to put the following code: if (keyValue.length==2) queries.put(keyValue[0], uriDecode(keyValue[1])); else queries.put(keyValue[0], ""); On the other hand, should be great to have some way to change "Available services" page, maybe by changing ServletController to suppot specifying a JSP or something like that. Maybe this is no the way to post this questions, in that case pleas point me to the right direction. Regards.