Thank you for gwt !
There are two gwt web application.
1. desktop ( such as windows )
2. admin management tool
1's context is root.
2's context is 'admin'
I'd like to run these apps on the same web application server.
After compiling, I published these apps(war) at the local tomcat.
I could run admin app as below code in the root app
Window window = new Window();
window.setHeading("Admin management");
//window.setModal(true);
window.setSize(600, 400);
window.setMaximizable(true);
window.setUrl("/admin/main.html");
window.show();
It was great.
but I wonder how to run both gwt application at the eclipse.
I'm using google plug-in for eclipse 3.5 ( 1.3.2.v201003242055 )
Can it has multiple context ?
and the last question is .... how to treat root app's object at the
admin app
Is it possible to access ?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.