On Dec 16, 9:22 pm, Ji <[email protected]> wrote: > Hi guys, > I had problem on running GWT project. I use fedora 11 + > eclipse3.5.1 ,when i run the GWT project, it throws a exception: > "java.lang.RuntimeException: Unable to determine my ip", then Stopping > AppEngine server. Could anybody help, thanks advance.
I had the same problem. What are you using for a hostname? If it is something specific, try changing the name to "localhost". Explanation: If you look at the GWT code in the stack trace when it fails, the code is trying to resolve the hostname and failing. The statement just before the failure does a specific check for localhost, so you're just doing a workaround by changing the name to localhost. I haven't looked into why the specific hostname lookup fails. They code is using standard Java library methods. -- 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.
