Implementing UDP Server using Apache MINA
In my last post we created a UDP client using Apache MINA. Lets turn the table and implement the Server side. Let’s see how using Apache MINA reduces the effort to create a UDP Server.
Steps to create a UDP Server using java.net API’s
Create a Socket and listen for incoming connection
Process each packet in a separate [...]
