Hello. After all, please, forgive my english. I have this scenario:
A server with a DatagramSocket, which receives periodic positioning messages (byte[]) from a gps tracker device (udp + gprs communication). Eventually i need to send commands (byte[]) to the device. To perform this task, i create a new DatagramSocket in the server. The problem is: the response to my command arrives through the other DatagramSocket, instead of arrives through the new Socket. That problem, in a multi-thread scenario, prevents the response to arrives to the correct sender (thread). Can MINA solve my problem? Thanks!
