On Mon, Sep 29, 2008 at 7:56 PM, stymie <[EMAIL PROTECTED]> wrote: > I cannot figure out how to get gwt working with php on the server > side. I know the tomcat server shell will not work. I am using eclipse > and gwt designer. > > Does anyone know of any good resources for getting gwt to work with > php?
It's a bit tricky. The following should get you going. In the project explorer, right click the project and select properties. Then select run/debug settings and click edit. Select the arguments tab. Under program arguments you need something like: -out www -noserver -whitelist "^http[:][/][/]127[.]0[.]0[.]1" http://127.0.0.1:4000/yourindex.html Under VM arguments you can do something like: -XstartOnFirstThread -Xmx1024M -Xms512M You don't need the -XstartOnFirstThread if you are not running on OS X. Note, you will need to have your server up and running or the host window will default to it's built in url. Ian has already responded with how to send requests and get responses back from the server. Hope that helps. Jim > > Thanks > > > -- Jim Freeze --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
