Confirmed by packet-sniffing, the following code is not even opening a TCP/IP connecting:
URL submitScoreURL = new URL( "
http://192.168.1.119/incoming/scores" );
connection = (HttpURLConnection) submitScoreURL.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod( "POST" ); // has no effect if you remove this line
System.out.println( "Sending score = "+score+" to remote host on connection = "+connection );
XMLEncoder encoder = new XMLEncoder( connection.getOutputStream() );
encoder.writeObject( score );
encoder.flush(); // has no effect if you remove this line
encoder.close();
connection.getOutputStream().flush(); // has no effect if you remove this line
System.out.println( "...sent" );
I … don’t understand :(. Surely there’s some stupid mistake I’m making here? 
), so the fact that no TCP/IP packets are generated mean its not a firewall problem :).
not a 1.1