Return-Path: X-Original-To: apmail-cxf-issues-archive@www.apache.org Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5F84E191E6 for ; Thu, 7 Apr 2016 06:39:26 +0000 (UTC) Received: (qmail 94499 invoked by uid 500); 7 Apr 2016 06:39:26 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 94458 invoked by uid 500); 7 Apr 2016 06:39:26 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 94359 invoked by uid 99); 7 Apr 2016 06:39:25 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2016 06:39:25 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id A68972C1F5D for ; Thu, 7 Apr 2016 06:39:25 +0000 (UTC) Date: Thu, 7 Apr 2016 06:39:25 +0000 (UTC) From: "Jim Ma (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CXF-6853) Support encoded value in @ApplicationPath MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CXF-6853?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jim Ma updated CXF-6853: ------------------------ Description: If @ApplicationPath value is an encoded value, if client send request to http://localhost:8080/Application!/myresource and get 404 . {code} @ApplicationPath("ApplicationPath%21") public class MyApp extends Application { public java.util.Set> getClasses() { Set> resources = new HashSet>(); resources.add(MyResource.class); return resources; } } {code} was: If @ApplicationPath value is an encoded value, if client send request to http://localhost:8080/Application!/myresource and get 404 . @ApplicationPath("ApplicationPath%21") public class MyApp extends Application { public java.util.Set> getClasses() { Set> resources = new HashSet>(); resources.add(MyResource.class); return resources; } } > Support encoded value in @ApplicationPath > ----------------------------------------- > > Key: CXF-6853 > URL: https://issues.apache.org/jira/browse/CXF-6853 > Project: CXF > Issue Type: Task > Components: JAX-RS > Affects Versions: 3.1.6, 3.0.9 > Reporter: Jim Ma > Assignee: Sergey Beryozkin > Fix For: 3.0.10, 3.1.7, 3.2.0 > > > If @ApplicationPath value is an encoded value, if client send request to http://localhost:8080/Application!/myresource and get 404 . > {code} > @ApplicationPath("ApplicationPath%21") > public class MyApp extends Application { > public java.util.Set> getClasses() { > Set> resources = new HashSet>(); > resources.add(MyResource.class); > return resources; > } > } > {code} > -- This message was sent by Atlassian JIRA (v6.3.4#6332)