molecule
molecule copied to clipboard
Hello World program doesn't work
When I ran your Hello World program in conjunction with Undertow, I got an error message: The web page at http://0.0.0.0:8080/ might be temporarily down or it may have moved permanently to a new web address.
I fixed this by changing the web creation line in my app to:
WebServer webServer = WebServer.create("127.0.0.1", 8088);
Yes, probably 0.0.0.0 does not work very well on all platforms. I'll update the documentation to use 127.0.0.1
Thanks