Submitted by: Steffen Grunwald
Merged from: r642827
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@642828
13f79535-47bb-0310-9956-
ffa450edef68
public ActionMapping getMapping( HttpServletRequest httpServletRequest )
{
String path = httpServletRequest.getServletPath();
+
+ if ("".equals(path)){
+ // if JEE 5 spec is correctly implemented, the "/*" pattern implies an empty string in servletpath
+ path = httpServletRequest.getPathInfo();
+ }
+
if ( path.startsWith( BROWSE_PREFIX ) )
{
path = path.substring( BROWSE_PREFIX.length() );