I am developing a gwt application on my Mac, now need to switch to my PC to test it out in IE, i don't want to copy the codes over to PC to rebuild the project just in order to test it, nor do i want to setup the whole apache+tomcat server on my Mac to deploy the project so that my PC can access that web application. is there any way i can run my gwt application in dev mode on Mac, then test it out in IE on my PC? i m using spring+maven+eclipse+gwt. much thanks...

link|improve this question

34% accept rate
feedback

3 Answers

up vote 7 down vote accepted

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

  1. Run > Debug Configurations...
  2. Confirm your project is selected left under Web Applications > Project Name
  3. Select the Arguments Tab on the right panel
  4. Under "Program Arguments:" append the argument "-bindAddress 0.0.0.0"

From there you can debug from a remote machine in Development Mode

link|improve this answer
yeah, i tried that, it didn't work, i still can have it running in dev mode: 127.0.0.1:8888/index.html?gwt.codesvr=127.0.0.1:9997, but if i replaced the 127.0.0.1 with my mac's IP, it don't work, not to mention to remotely access it from PC – user468587 Dec 16 '10 at 23:48
When I start an example application with the above steps my address changes from the localhost to my public ip as you can see 192.168.0.103:8888/Bind_Test.html?gwt.codesvr=192.168.0.103:9997 – Kodova Dec 17 '10 at 4:55
i m not sure if i made this clear, i have a gwt application working, now i need to view the app in different browsers on different machie to see if the layout/funcationality works well, i don't mean to debug it from a remote machine in Dev mode... – user468587 Dec 17 '10 at 5:30
If the Windows machine and the Mac are on the same network then this will work, if you don't want debugging then you can do the same thing under run configurations. If your windows machine can not communicate with the mac then there is no way around it. You will need to compile the GWT code to JavaScript and deploy the war to a servlet container that the windows machine can talk to. – Kodova Dec 17 '10 at 6:22
1  
oops, version 1.2 doesn't support <bindAddress> option, so googled around and fix is <logLevel> option, we embedded the -bindAddress parameter in the <logLevel> to trick maven to run with the -bindAddress: <logLevel>INFO' -bindAddress 0.0.0.0 -logLevel 'INFO</logLevel>. when u run maven from the command line and observe the maven output, u should see sth like this : ..-loglevel info -bindAddress 0.0.0.0 -loglevel info. for gwt-maven-plugin version 2.1, <bindAddress> options is supported, check here: mojo.codehaus.org/gwt-maven-plugin/eclipse-mojo.html. The End. – user468587 Dec 20 '10 at 17:43
show 5 more comments
feedback

See Debug GWT application in a remote browser.

link|improve this answer
feedback

What error are you getting while trying to access it?

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.