Hi Grzegorz, > I have an action mapped at URL > http://localhost:8080/elements/AdminMenu.action which I can go > to with my browser and it works. > But if I try and do <jsp:include page="/elements/AdminMenu.action"/> > I get FileNotFoundException.
Is 'elements' the context root of your web application? If so, you need to use <jsp:include page="/AdminMenu.action"/> instead. That is why, in the snippet from the Stripes book, there is the attribute prependContext="false" on the <s:url> tag. Cheers, Freddy http://www.stripesbook.com ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Stripes-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/stripes-users
