Dear Falko,
When I type netstat -tap is not there. But the funny part is that when I type "telnet 192.168.2.15 8080" locally in the same machine but different terminal I can see this statement "Remote Connection Accepted" is printed on the server terminal. Below is my codes which is just few lines. What can be my error ya? Thank you.
public static void main(String[] args) {
try {
InetAddress Address = InetAddress.getByName("192.168.2.15");
System.out.println(Address);
final ServerSocket serverSocketConn = new ServerSocket(8080,-1,Address);
while (true)
{
try
{
Socket socketConn1 = serverSocketConn.accept();
System.out.println("Remote Connection Accepted");
//new Thread(new ConnectionHandler(socketConn1)).start();
}
catch(Exception e)
{
System.out.println(e.toString());
}
}
}
catch (Exception e)
{
System.out.println(e.toString());
//System.exit(0);
}
}
QUOTE=falko;240245]Maybe it is a problem with your Java program. Do you see it in the output of
?[/QUOTE]
Recent comments
1 day 10 hours ago
1 day 13 hours ago
1 day 14 hours ago
1 day 15 hours ago
1 day 17 hours ago
1 day 18 hours ago
1 day 20 hours ago
2 days 12 hours ago
2 days 12 hours ago
2 days 16 hours ago