HttpRequest request = requestFactory.buildPostRequest(url, hc);
HttpResponse resp = request.execute();
InputStream is = resp.getContent();
String reqLogInfo = String.format("reqId: %s, sessionId: %s",
jsonServiceRequest_.getReqId(), jsonServiceRequest_.getSessionId());
StreamHandler jsh = getStreamHandler();
jsh.parse(is, handler_, reqLogInfo);
success = true;
} catch (IOException e) {
throw new ServiceCallException(e);
} finally {
String namespace = jsonServiceRequest_.getNamespace();