Hi Gustavo,

this is what we are doing to logout:

1) the logout link returns a logout-page without any real surface where the appendToResponse is overwritten to terminate the session and to redirect to a "you logged out successfully" page. The method is :

 public void appendToResponse(WOResponse response, WOContext context) {
        // necessary?
        super.appendToResponse(response, context);
        // finish session
        session().logout();
        session().terminate();
        // redirect
String redirectURL = context.request().adaptorPrefix() + "/" + context.request().applicationName() + ".woa/wa/logout";
        response.setStatus(302);
        response.setHeader(redirectURL, "location");
        response.setHeader("0", "content-length");
    }
2) The DirectAction "logoutAction" returns a stateless page with the logout hint. If you want to avoid creating a session on this page make sure that you do not touch anything that needs a session. This is especially true for any form elements or component-action-links.

HTH,
Susanne
--
Susanne Schneider
Coordinator secuTrial Development

iAS interActive Systems GmbH
Dieffenbachstraße 33 c, D-10967 Berlin

fon    +49(0)30 22 50 50 - 498
fax    +49(0)30 22 50 50 - 451
mail   [email protected]
web    http://www.interActive-Systems.de

----------------------------------------------------
Geschäftsführer: Dr. Marko Reschke, Thomas Fritzsche
Sitz der Gesellschaft: Berlin
Amtsgericht Berlin Charlottenburg, HRB 106103B
----------------------------------------------------
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to