Redirect to a different URL in GWT
Here is a simple JSNI function to call from your GWT app to redirect to a different URL.
//redirect the browser to the given url
public static native void redirect(String url)/*-{
$wnd.location = url;
}-*/;
An example call
redirect("http://www.emgarten.com/");