In GWT 2.0 code splitting was introduced. You can have one big application,
that contains both modules. In the standard case you load your application
as before. In the registration case you can load a second module and use it.
This is much better than having two applications with different entry
points. It also allows you, to have some basic infrastructure, that's used
by both modules. So you can create a third module.

If you design this correct, you'll get an extendable and modularized
application, that loads modules if required. That happens all in the same
host page, so no page reload.

Regards
Jan Ehrhardt

2010/4/20 Jochen Schnaidt <[email protected]>

> Hi all,
>
> I have a question about the design of a GWT project.
> I am working on an application for registration to events based on GWT
> and GAE. The application consists of three modules: administration
> (create, edit an event and reporting), signup (registration of guests)
> and a ‘desktop’ for the people working on the desk.
> At the moment I am finishing the first part administration. It is a
> classical RIA based on a DockLayout on one webpage. What I need now is
> a second Webpage where I can send my guests to register them to an
> event. I read a lot about this in the community but never found an
> answer how to do it right.
> When I add a second Webpage to my project and add a second entry point
> to the XML everything dumps.
> Must I create a second GWT project or is it possible to integrate this
> functions in a separated part of the existing project?
>
> Ideas, comments are welcome.
>
> Thanks a lot, greetings Jochen
>
> --
> 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]<google-web-toolkit%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
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.

Reply via email to