Hi,

I have some problems with my program, maybe somebody knows a solution :

I wrote an Client Server Applikation with Sockets. All my Code worked perfect.
Then I take this working code and place it into an applet. But know the client doesnt find the server ? I also get no Exception. The Client programm waits at following line :


client = new Socket(InetAddress.getByName("168.192.192.123"),5000);



You see I try to connect to a Server (it's the same computer) The Server is also running and listening on port 5000.
But nothing happens ? What shall I do ?

Martin