Tagged Questions

5
votes
1answer
5k views

Multiple Entry Points in GWT

I'm getting into Google Web Toolkit, and am a little confused about the Entry Points in GWT. Google's docs say: If you have multiple EntryPoints (the interface that defines onModuleLoad()) within ...
5
votes
4answers
3k views

GWT Compile “Add an entry point module” dialog

Can anyone explain where the Eclipse GWT plugin defines it's entry points? In an attempt to get my old GWT project working again with GWT 2.0, I created a default GWT 2.0 project in Eclipse and was ...
5
votes
7answers
12k views

Problem with multiple entry Points in the same module

I have multiple entry points in the same module. For example I have an Home entry point for the home page and an Admin entry point for the admin page. <entry-point ...
2
votes
5answers
2k views

How do I compile a module without an EntryPoint?

I have a utility module for GWT which doesn't have an UI (hence, there is no class which inherits from com.google.gwt.core.client.EntryPoint. When I try to compile this module with GWT 1.7.1, I get ...
1
vote
1answer
339 views

Access public EntryPoint fields in GWT

In GWT is there a way for a widget to access a public member of the application's EntryPoint class? I want to store certain "application-wide" data in the EntryPoint class, and then have widgets ...
0
votes
3answers
81 views

GWT Server side entry point

I followed these instructions http://code.google.com/webtoolkit/usingeclipse.html There appears to be no entry point function for the server? How do I run background threads or code not related to ...
0
votes
1answer
143 views

How to extract parts of a GWT application into a library of separate dialogs

I'm trying to extract parts of a GWT application into many separate dialogs that can be invoked from php. Existing state: We have a GWT appplication that is deployed to JBoss as a WAR. The app has a ...
0
votes
2answers
214 views

Redirect to external link in AppEngine java?

I want to redirect to a external webpage but I don't know how to do that because in the EntryPoint I don't have Request and Response like in HttpServlets. How can I do that?
0
votes
1answer
245 views

GWT Entry point Configuration

HiI have to create one login module using GWT with RPC with the functionality of login, registration and forgotPassword. Login is working fine. Now i have to proceed for registration and forgot ...
-2
votes
1answer
50 views

Objectify at GWT entry point

I'm very new to Google Web Toolkit (GWT) and Google Apps Engine. I want to use Objectify directly in the entry point so that I can utilize GWT in my apps. (I use java) Is it possible to load ...