I got this error when I executed the following code:
var insert = new TableBatchOperation();
foreach (var entity in entities)
{
    insert.Insert(entity);
}
cloudTable.ExecuteBatch(insert);  
Where the entities collection contained 512 elements. The Azure SDK through a StorageException:
"Unexpected response code for operation : 99" 
What does this error mean, and how can I solve this?
 
     
     
    