> I have a Eclipse+Cypal Studio project that has grown to a reasonable
> size, and while testing I still use the GWT hosted mode to run. My
> machine doesn't have anything else running on port 8888, but
> occasionally when I start the project, the hosted browser's status bar
> just says "Connecting to site at 127.0.0.1" but nothing happens
> (browser window is blank). I'd have to close GWT and restart it for it
> to work (sometimes 5 or 6 times before it works).
Before starting a new server check the process-list if there isn't
still the old one running (still shutting) down. This can lead to
this kind of effect, because the server-socket is still open but
the subsequent systems (i.e. the request-handling thread and the
servlet) are already down.
If there is an old process still running, kill it using the way
you most prefer on the system you use (e.g. kill -9 PID on Unix-
like systems).
Regards, Lothar