try {
String paramResponseFormat = request.getParameter("responseFormat");
String callback = request.getParameter("callback");
String paramUrl = request.getParameter("url");
String httpMethodParam = request.getParameter("method");
HTTP_METHOD httpMethod = HTTP_METHOD.GET;
if (httpMethodParam != null) {
if ("POST".equalsIgnoreCase(httpMethodParam)) {
httpMethod = HTTP_METHOD.POST;
} else if ("PUT".equalsIgnoreCase(httpMethodParam)) {
httpMethod = HTTP_METHOD.PUT;