I have been trying to get a simple networking test program to run with no results.
Server:
import java.io.*; import java.net.*; public class ServerT
Likely the server socket is only being bound to the localhost address. You can bind it to a specific IP address using the 3-argument form of the constructor.