>HI Roedy,
> Thanks for reply. Ya server to which applet has to talk and the
>server from where it is loaded are the same host(IP) .
>
> Then what may be the problem.
what is the error message/exception?
Show some code.
Do you know about the "downstream" problem? See
http://mindprod.com/jgloss/applet.html
and search for "downstream"
.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
prabhu - 25 Mar 2006 12:46 GMT
Hi,
I am getting "No host to route" exceception in the client
side.
I did a simple socket program
Client side
Socket client=new Socket("IP",9999);
Server side
ServerSocket ss=new ServerSocket(9999);
Socket s=ss.accept();
System.out.println("Connection Accepted");
This is my coding . I am not getting "Connection accepted " in the
server side. But all applet files are downloaded in the client browser.
I am catching the exception in the client side and
displaying it in one text box. It is displaying as
"java.net.NoRouteToHostException: No route to host: connect."
Roedy Green - 25 Mar 2006 23:32 GMT
> Socket client=new Socket("IP",9999);
>
>Server side
>
> ServerSocket ss=new ServerSocket(9999);
check your firewalls on both ends that they will let though that
socket.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.