xwork.xml has relative urls to target jsps causing problems with invocation from any .jsp not in the webapp root folder. ------------------------------------------------------------------------------------------------------------------------
Key: CONTINUUM-951 URL: http://jira.codehaus.org/browse/CONTINUUM-951 Project: Continuum Issue Type: Bug Components: Web interface Affects Versions: 1.1 Reporter: Christian Gruber Attachments: xwork_and_build_def_fix.diff Summary kind of says it all assuming: ${webapp}/foo.jsp ${webapp}/components/bar.jsp <action name="blah" ...> <result name="foo">foo.jsp</result> </action> should be <action name="blah" ...> <result name="foo">/foo.jsp</result> </action> otherwise /components/bar.jsp, which invokes blah, things it is invoking /components/foo.jsp instead of /foo.jsp Primary example is to try to add a new build definition to the group. Patch included. Patch also fixes [CONTINUUM-947] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira