18.06.2010, 18:39
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:
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).
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.
Code:
ServerSocket serverSocket = new ServerSocket(0);What if you change that to:
Code:
ServerSocket serverSocket = new ServerSocket(0,0,127.0.0.1);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.
