String json_line = getPayload(control_line, parts);
JSONObject json_object;
if (debug.val) LOG.debug("Processing response dump");
try {
json_object = new JSONObject(json_line);
newEntries.fromJSON(json_object, catalog_db);
} catch (JSONException ex) {
LOG.error("Invalid response:\n" + json_line);
throw new RuntimeException(ex);
}
this.responseEntries.addAll(newEntries);