Hi, Get the jsonObject for the content fragments, and merge them like below in your custom servlet - JSONObject Obj1 = (JSONObject) json1.get("cf1"); //jsonObject for 1st content fragment
JSONObject Obj2 = (JSONObject) json2.get("cf2"); //jsonObject for 2nd content fragment
JSONObject merge = new JS...