When i start the development mode server in GWT, i get the following url
http://localhost:8080/myproject/show/mainpage?gwt.codesvr=127.0.1.1:9997
If i understand correctly, Jetty is running on port 8080 of localhost and my applications server is running on ip 127.0.1.1 and port 9997.
Is there a way to make the code server too listen on port 9997 of localhost or 127.0.0.1 insstead of 127.0.1.1 ?
Thank You