I created a new project. It comes with the project architecture as usual,
project.html / css
Now right click on project, click on Google web toolkit -> GWT module
It creates a new module named Module2 with an entry point. So it has client, server, Module2.gwt.xml and Module2.html
Thus GWT allows to create more than one html page in the same application.
Now i can do anything in module2 very well in its project architechture.
Now the problem comes when i need to open Module2.html in a new window after the user clicks an event in Project.html. I need to access the data from Project package to Module2 package in both server and client. But it then creates a problem.
My requirement is to transfer the session from Project.html to Module2.html as well as Module2 should be able to access data from server/client package of Project.
Can anyone pls suggest me the best approach.
--
Deepak Singh