// send the message to the server
try {
// send the combined message
simpleClient.send(MessagePacker.pack(message, record.getClientID()));
} catch (IOException ioe) {
throw new MessageException(ioe);
} catch (PackerException e) {
throw new MessageException(e);
}
}