Hi,
I have a problem with sending messages to a server. I wrote a small gamelobby, which is simliar to the chatclient/server sample, except it doesnt work

.
The problem occours in the class "DefaultLobbyClientModel":
protected void sendPlayerInfoToServer(LobbyPlayer player) {
LobbyPlayerConnectionMessage m = new LobbyPlayerConnectionMessage();
m.setPlayer(player);
m.setConnectionStatus(LobbyPlayerConnectionMessage.PLAYER_CONNECTED);
client.sendToServer(m); // -> sends nothing to the server
// client.broadcast(m); // the same
}
I uploaded the code, because there are some files:
http://web8.vs188242.vserver.de/mewel/lobby.zipHope someone can look at the code
