Re: Having Action forward to another applications action

2004-08-05 Thread Kishore Senji
If your forward path starts with a /, RequestProcessor's processForwardConfig() treat's it relative to the current contextpath and so you would end up hitting an url in the same application. If your forward path doesn't start with a /, response.sendRedirect() which is used by processForwardConfig()

Having Action forward to another applications action

2004-08-05 Thread DuBois, Joseph
Heylo all, Problem: I have two related applications, one which handles authentication (chlogin) and a second application which handles managing a menu (chmenu). When the user logs out of the menu application I would like to forward them to the logout of the authentication app. In my menu appli