I've got an application I'm trying to deploy that works perfectly on my Windows development system.
I deploy it on a Suze box, and the following behavior occurs. User Logs in fine. My Request Processor has an overridden processActionPerform() which checks and sees if he has signed the Terms of Service. He hasn't, so the Request processor returns the TOS Acceptance global forward. If the user isn't logged in (or is and has signed them, super.processActionPerform() is returned. The above seems to work fine...but: When the user Accepts the TOS (or rejects it for that matter), his httpSession doesn't appear to be logged in anymore. SecurityFilter redirects him to the login page.... This only happens when the RequestProcessor hijacks the request, so I'm sure I'm doing this in the exact wrong way... I overrode processActionPerform() rather than process() because I wanted to be able to return a global forward, and process() had no ActionMapping object passed into it.... --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]