On Wed, Sep 2, 2009 at 6:49 PM, sidkdbl07<[email protected]> wrote: > > My php file is on a web server configured with PHP5. The address of > the weather.php5 file is http://www.myserver.com/weather.php5. > > I'm debugging my GWT files in Eclipse. The GWT class (see above) makes > a call to the weather.php5 page with the following line... > > RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, > URL.encode("http://www.myserver.com/weather.php5")); > > Honestly, I don't know if I'm using the Jetty server. How do I tell? I > have no app engine configured in Eclipse. > > When I debug my GWT project in Eclipse response.getStatusCode() comes > back as 0 (zero) > When I add -noserver to the run configuration, the GWT hosted mode > browser doesn't display my page... it seems to just sit there empty. > > I hope this clears up what I'm trying to accomplish.
Yes, that's the answer I was looking for. Do you know that in noserver mode you must compile your GWT application, and deploy it to your server? http://code.google.com/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
