This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

You can configure single logout in WSO2 App Manager to automatically sign out from all logged in apps, when you sign out from one.

Configuring WSO2 App Manager

To configure WSO2 App Manager for single logout, select Enable Single Logout in the Step 2 - Policies section of creating a Web app, and specify the logout URL of your app as shown below.

enable single logout

WSO2 App Manager internally converts the Web app URL to a gateway URL. When persisting the logout URL, the logout acton is appended to the gateway URL by tallying it against the Web app URL. Therefore,  you need to enter the complete logout URL (including the Web app URL).

For example, if your Web app URL is http://locahost:8080/MyWebapp, the enter the logout URL as follows: http://locahost:8080/MyWebapp/?action=logout.

Configuring the Web app

In the Web app, if you have any absolute references configured in the logout URL, then WSO2 App Manager will directly invoke the Web app by-passing the gateway. Therefore, you need to configure the logout URL as a relative reference. For example, a sample logout link configuration with a relative reference on a JSP page, is as follows.

<li><a href=<% out.println(".?action=logout"); %>>Logout</a></li>

  • No labels