18.06.2010, 20:55
(18.06.2010, 18:39)hvdwolf Wrote: Maybe it is a very stupid question/suggestion, but currently you have in "mapview/src/main/java/slash/navigation/converter/gui/mapview/BaseMapView.java" the following statement:Code:ServerSocket serverSocket = new ServerSocket(0);
What if you change that to:
to force it to use the IPV4 localhost inet address, like described here. Especially as both linux and OSX have an inet daemon based network setup (don't have a clue for windows).Code:ServerSocket serverSocket = new ServerSocket(0,0,127.0.0.1);
Well, actually I thought: create a socket for me. No more, no less. But as the last fix to replace localhost with 127.0.0.1 in the routeconverter.html showed that there are less problems with different network setups, I've created a new prerelease version. Maybe it does show the error message on Mac OS X anymore?
(18.06.2010, 18:39)hvdwolf Wrote: Please consider this as a "java no brains" wild guess. I would love to try to compile that myself as that would at the same time hide my stupid suggestion in case it failed, but alas.
Please try the latest prerelease and report the result.
--
Christian
Christian

