On the previous version of my app (not struts) - I used forward getRequestDispatcher(pageName).forward() to hide the actual JSP page the user was on - thereby only ever displaying the
servlet name - this got around the problem of user's bookmarking any page & returning to them directly!
I was hoping to acheive the same with the rewritten struts app but can't seem to do it - is it best to put a check in all action commands checking for a session level variable & forward on to the start page if not set? - or what? - how is it normally handled using struts?
thanks