I am developing a GWT application on my Mac and now I\'m supposed to test it in IE on my PC.
However, I don\'t want to copy the codes to PC in order to rebuild the proje
In your run configuration of eclipse use -bindAddress 0.0.0.0 and this allow jetty to receive traffic from outside localhost.
In the Eclipse menu
From there you can debug from a remote machine in Development Mode
See Debug GWT application in a remote browser.
for maven, you can run as
mvn gwt:run -Dgwt.bindAddress=0.0.0.0
set -bindAddress 0.0.0.0 in (x)=Arguments tab in "Run Configuration" as stated above. when you run your application GWT will use your computer IP in launch URL. after opening the URL in your browser, click on GWT toolbox on the right of Chrome address bar which will open "GWT Developer Plugin Options". now just add your IP to the list of webserver exceptions.