GWT is just telling out that it can't figure out a way to start your
application.  Maybe you don't have any JSP or HTML files in the root
of your war - you might be hiding these under WEB-INF.

There is a program arguement called "startupUrl" which you can use to
assign the initial URL of your application.  Think of this as the
equivalent of the welcome page that you specify in web.xml.

To assign this option in Eclipse specify the following from the top
level menu

   Run -> Run Conifgurations

Then select the run configuration under the "Web Application" type.
It will be named the same as your project.

Then select the "arguments" tab and enter something like the following
in the "Program arguments" area:

  -startupUrl nnnn

where "nnn" is the name of your welcome page resource (typically a
servlet name)

All this does is get Eclipse to list this when you start the
application.  You can also just bookmark this link in your browser and
not bother to set it in Eclipse.  As far as I know, Eclipse doesn't
start the browser automatically. Although there may be a way to do
that.

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