I want to develop a Web Application that sends packets to clients In JAVA using UDP protocol.
I need to send packets to each clients directly .
Java provide a class called MulticastSocket that extends UDP. This can send packets to multiple clients over the network.
But it just happens in local network not on the "Internet".
Is there any way to send multicast packet over internet ? If it possible explain it and explain how i can implement it in Java.
I found some protocols like IGMP... but I think it developed in MulticastSocket.