"Wendy S" <> wrote in
news:bg3hha$7sh$:
> What do you have in struts-config.xml? I have ActionServlet (the
> first line above) in web.xml, then struts-config has the Tiles plugin
> set up:
Hi Wendy,
I added the line:
<controller
processorClass="org.apache.struts.tiles.TilesReque stProcessor"/>
and all systems go, many thanks!
Perhaps you can help me with another issue which is when I have a user
access a restricted page I throw them to the login page, this isnt a
redirect as the url doesnt change. what I want the login page to do on
success is to pop them back to the calling page, but it doesnt seem to want
to play ball... if I add:
return (mapping.getInputForward());
it simply redirects back to the login page which is wrong. Obviously I
need this to be dynamic as
return (mapping.findForward("mainmenu"));
will always forward to the same place.
Thanks!
J