Passing HTML/context parameters to vaadin application - Flashvar equivalent

How would I pass HTML/context parameters to an embedded vaadin application? Do I simply stick them on the request URL - or is there some other way?

-J.

You can pass parameters in URL or in a POST. In Vaadin, add your implementation of ParameterHandler interface to your window instance via window.addParameterHandler(…) methos to receive POST/GET parameters passed.