The below lines of code
HttpRequestExecutor httpexecutor = new HttpRequestExecutor();
HttpResponse response2 = httpexecutor.execute(request2, conn, context);
log.info("Status Line "+response2.getStatusLine());
while executing the second statement my request/response is blocked by proxy. How to debug this.? While the same statement executing from my local environment where no proxy is configured, am able to see the log returns the below code "Status Line HTTP/1.1 200 OK"