if(bodyCount > 0)
{
long bodyLengthReceived = 0;
for(int i = 0 ; i < bodyCount ; i++)
{
ContentChunk contentChunk = _currentMessage.getContentChunk(i);
handle.addContent((int)bodyLengthReceived, ByteBuffer.wrap(contentChunk.getData()));
bodyLengthReceived += contentChunk.getSize();
}
}
_transaction.addPostTransactionAction(new ServerTransaction.Action()
{