From c6b3dc93c9d762af959e1d67c16af75e53fac107 Mon Sep 17 00:00:00 2001 From: jaewohong Date: Tue, 13 Jan 2026 14:08:19 +0900 Subject: [PATCH] merge --- .../http/client/impl/HttpClient5AdapterServiceRest.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/main/java/com/eactive/eai/adapter/http/client/impl/HttpClient5AdapterServiceRest.java b/src/main/java/com/eactive/eai/adapter/http/client/impl/HttpClient5AdapterServiceRest.java index ad296ca..fd3d012 100644 --- a/src/main/java/com/eactive/eai/adapter/http/client/impl/HttpClient5AdapterServiceRest.java +++ b/src/main/java/com/eactive/eai/adapter/http/client/impl/HttpClient5AdapterServiceRest.java @@ -991,11 +991,7 @@ public class HttpClient5AdapterServiceRest extends HttpClient5AdapterServiceSupp if (eaiBody instanceof JSONObject) { JSONObject jsonObject = (JSONObject) eaiBody; if( jsonObject.containsKey("KJB_ROOTLESS_ARRAY") ) { - ContentType contentTypeObj = ContentType.create(contentType, charset); - JSONArray array = (JSONArray) jsonObject.get("KJB_ROOTLESS_ARRAY"); - StringEntity entity = new StringEntity(array.toJSONString(), contentTypeObj); - method.setEntity(entity); - return; + eaiBody = jsonObject.get("KJB_ROOTLESS_ARRAY"); } }