vote up 0 vote down star

If i try to use this action (test2) it always returns "The requested resource (/WebApplication4/newFolder/test2.jsp) is not available."

Running tomcat6 and netbeans 6.7.1

config.xml (it is included in struts.xml):

    <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
    <package name="mypackage" namespace="/" extends="struts-default">
        <action name="test2">
            <result>/newFolder/test2.jsp</result>
        </action>
    </package>
</struts>

alt text

but if i change result value from "/newFolder/test2.jsp" to "test.jsp" - everything works.

flag

78% accept rate

1 Answer

vote up 0 vote down check

Solved, needed:

<result>/WEB-INF/newFolder/test2.jsp</result>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.