Redirect browser to other URL from inside Vaadin.

Hi guys,

Is there a way to redirect the browser from inside the Vaadin Application?

I’am trying it with RequestDispatcher, but all I get is a Null Object from it

thanks

You may call the
open ( URL )
method of the Window object to open another URL in the same or a new browser window. You can also set the exit URL for the application via
application.setExitUrl()
call and then close the application by calling
application.close()
- your application session will be closed and browser redirected to te specified address.