What I need to do the equivalent of this (note the significant piece is the input attribute):
<action path="/loadCompletion" parameter="subtask" type="my.web.loadrequest.action.LoadCompAction" name="loadReqForm" input="doc.loadCompForm#pageMiddle" validate="true" scope="request"> <forward name="showConfirm" path="doc.loadCompConfirm"/> <forward name="displayJobNotFound" path="doc.loadReqNotFound"/> </action> If validation fails I would like to go to an anchor I have in the middle of the page. Not anything dynamic like to the exact field where the error occurred or anything just to an anchor on the middle of the page. Is this possible? If I wasn't using Tiles would this work: input="/somedir/some.jsp#pageMiddle" ??? Not that I would do it that way but I am curious.