I try to debug the GWT app in a remote browser (located on other computer than Eclipse instance) for example in VMware environment. Unfortunately while opening address below there is no connection.

http://192.168.1.2:8888/app_test.html?gwt.codesvr=192.168.1.2:9997

I've tried adding -Dgwt.args="-bindAddress 0.0.0.0" to Arguments -> VM arguments but the parameter seems to be unrecognized. Server still binds to localhost.

I use Google Eclipse plugin. Thank you for any help.

link|improve this question

52% accept rate
feedback

3 Answers

up vote 11 down vote accepted

In eclipse open your debug configuration and add the param -bindAddress 192.168.1.2 (replace the ip with the local ip address of your machine) to the arguments > program arguments. That's how we debug in virtual box.

link|improve this answer
z00bs, where do you suggest to add the'-bindAddress 192.168.1.2' param? When I try to put this into (Eclipse) Run Configurations... -> Arguments -> Program arguments I've got 'Unknown argument: -bindAddress'. – rafalry Oct 17 '10 at 11:07
The solution for the problem mentioned above is to user GWT SDK version 2.0.4 (for 2.0.0 bindAddress won't work). z00bs - thank you. – rafalry Oct 17 '10 at 11:41
You're welcome! I didn't know bindAddress requires a specific gwt version. Thanks for pointing that out. – z00bs Oct 17 '10 at 12:04
feedback

The steps I have used using Eclipse/GWT 2.4:

  • Add the param "-bindAddress 0.0.0.0" in "Run Configuration|Arguments|Program Arguments" (Eclipse) on the server PC/Mac/Linux
  • Server firewall: Open the port 9997 (in)
  • Client firewell: Open the port 997 (out)
  • Lastly (and that was the step missing that prevent running/debugging). In your client Chrome browser, go the options (chrome://settings/extensions) and add the server IP address in the list of allowed hosts
  • Start the server, it will display the proper URL
link|improve this answer
feedback

For people struggling with GWT and Maven: The plugin accepts a parameter

 -Dgwt.bindaddress=0.0.0.0  

other syntaxes did not work for me

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.