Capturing URL suffix

Hi,

I would like to know if there is a way to capture the URI if a site refresh is made,
like this:

  1. I enter the Vaadin site: http://localhost:8080/myproject
  2. I type again the adress to enter: http://localhost:8080/myproject/secureArea

From the step 1 to step 2, it will be in the same session, same application.

I want to know how can vaadin get this “secureArea” suffix in the URL, in the second time?

Is URIHandler what you’re looking for? See
the book
.

GREAT, that is it. Thanks.