{
DatabaseEntry key = new DatabaseEntry();
LongBinding.longToEntry(messageId, key);
DatabaseEntry value = new DatabaseEntry();
ContentBinding messageBinding = ContentBinding.getInstance();
messageBinding.objectToEntry(contentBody.array(), value);
try
{
OperationStatus status = getMessageContentDb().put(tx, key, value);
if (status != OperationStatus.SUCCESS)
{