dgram = new DatagramPacket(recvBuffer, recvBuffer.length);
try {
socket = new MulticastSocket(iManager.networkMulticastPort);
socket.joinGroup(iManager.networkMulticastAddress);
} catch (IOException e) {
throw new OIOException(
"Can't startup the Discovery Listener service to catch distributed server nodes, probably the IP MULTICAST is disabled in current network configuration: "
+ e.getMessage());
}
start();