LOGGER.fine(bold("======== About to create a message and send it to the server"));
_client.message = _messageFactory.createMessage();
Section messageBody = new AmqpValue("Hello");
_client.message.setBody(messageBody);
_client.messageData = new byte[BUFFER_SIZE];
int lengthOfEncodedMessage = _client.message.encode(_client.messageData, 0, BUFFER_SIZE);
_testLoggingHelper.prettyPrint(TestLoggingHelper.MESSAGE_PREFIX, Arrays.copyOf(_client.messageData, lengthOfEncodedMessage));