Image

Session Timeout Using the Google Web Toolkit (GWT)

Session Timeout Using the Google Web Toolkit (GWT)
14 years ago

Session Timeout Using the Google Web Toolkit (GWT)

This was the easiest solution I found:

First, use a JSNI call in your main entry class:

private static native void redirectToUrl(String prefix) /*-{

$wnd.location = prefix + “/index.jsp?logoff=true”;

}-*/;


Read More

Top