javascript is used to submit the form and method type is POST
document.forms[0].method = 'post';
document.forms[0].submit();
In some cases; the request is getting converted to GET. The occurrence is like 10 out of 1000 requests.
Please let me know if any one faced such issue and if we have any work around.
Go to the complete details ...