Now am working with java application . I have to connect server and client through No-Ip Duc host.Is it possible or not???
Server side code:
ServerSocket ss=new ServerSocket(5223);
System.out.println("Waiting for client");
Socket soc=ss.accept();
System.out.println("Connected");
client side code:
Socket soc=new Socket("rmcsnoiptest.ddns.net", 5223);
This is what i tried.