1st approach
finally{
// here when i return response am getting proper output
context.Response.Body.Write();
}
2nd approach
finally{
// here when i return response am notgetting the required body in client
context.Response.Body = new memorystream();
}