rootless제거로직 암호화안되던 bugfix,

This commit is contained in:
cho
2026-01-13 14:05:51 +09:00
parent b054f5f3da
commit 67719a68c4
@@ -991,11 +991,7 @@ public class HttpClient5AdapterServiceRest extends HttpClient5AdapterServiceSupp
if (eaiBody instanceof JSONObject) { if (eaiBody instanceof JSONObject) {
JSONObject jsonObject = (JSONObject) eaiBody; JSONObject jsonObject = (JSONObject) eaiBody;
if( jsonObject.containsKey("KJB_ROOTLESS_ARRAY") ) { if( jsonObject.containsKey("KJB_ROOTLESS_ARRAY") ) {
ContentType contentTypeObj = ContentType.create(contentType, charset); eaiBody = jsonObject.get("KJB_ROOTLESS_ARRAY");
JSONArray array = (JSONArray) jsonObject.get("KJB_ROOTLESS_ARRAY");
StringEntity entity = new StringEntity(array.toJSONString(), contentTypeObj);
method.setEntity(entity);
return;
} }
} }