SlashesInActionNames does not work when namespace is the root context (i.e. 
namespace="/")
------------------------------------------------------------------------------------------

                 Key: WW-2648
                 URL: https://issues.apache.org/struts/browse/WW-2648
             Project: Struts 2
          Issue Type: Bug
          Components: Core Interceptors
    Affects Versions: 2.0.11
         Environment: OS- Fedora
JDK jdk1.6.0_02 
Servlet container - Tomcat 6.0.14

            Reporter: Rodel T. Viado
            Assignee: Don Brown


Below is a sample config that exhibits the problem. Note that the namespace is 
the root context, it works fine if the namespace is not the root.

<struts>
<constant name="struts.enable.SlashesInActionNames" value="true" />

<package name="login" namespace="/" extends="struts-default">
      
        <action name="sample/Login" class="com.any.LoginAction">
            <result name="input">/login/login.jsp</result>
            <result type="redirect-action">SucessAction</result>
        </action>
</package>
</struts>

Accessing http://localhost/<webAppContext>/sample/Login.action

Where <webAppContext> is the contextPath of the web application

Results in an error:

There is no Action mapped for action name sample/Login. - [unknown location]
        at 
com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:186)
        at 
org.apache.struts2.impl.StrutsActionProxyFactory.createActionProxy(StrutsActionProxyFactory.java:41)
        at 
org.apache.struts2.dispatcher.Dispatcher.serviceAction(Dispatcher.java:494)
        at 
org.apache.struts2.dispatcher.FilterDispatcher.doFilter(FilterDispatcher.java:419)
        at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)





-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to