Java's HttpClient doesn't resolve localhost to IPv6
I was just stuck at this problem for half an hour. The issue was a bit difficult to figure out.
I have this Express server (Node.js) running:
var hmr = http.createServer(app);
hmr.listen(8090, "localhost", function () {
console.log('Listening on %j', hmr.address());
});
After