Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

However, when developing third party Web applications, do not include hard-coded absolute URLs, in which case, the gateway would be by-passed and your Web app will be directly invoked.

...

WSO2 AppM will directly invoke the Web app by-passing the gateway.

enable single logoutImage Added

When persisting the logout URL, WSO2 App Manager converts it to a gateway URL by tallying it against the web Web app URL. Hence Therefore, the logout URL always need to start with web the Web app URL as shown in the below convention.

  • Web app URL: http http://locahost:8080/MyWebapp
  • Logout URL: http http://locahost:8080/MyWebapp/?action=logout
Info

WSo2 App Manager does not require any sort of special parameters to be present in the logout request, for the above convention.

Configuring the

...

Web app

The configured logout URL of the web Web app should be relative, and should not contain absolute references. A sample logout link configuration on a JSP page, is as follows.

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