Fix issue in event payload building

This commit is contained in:
charitha 2017-11-17 15:47:07 +05:30
parent f790b13baa
commit b15aaa9a3c

View File

@ -186,6 +186,8 @@ public class HTTPEventAdapter implements OutputEventAdapter {
String payload = message.toString();
if ("true".equals(dynamicProperties.get(HTTPEventAdapterConstants.ADAPTER_MESSAGE_URL_TEMPLATED))) {
contentType = "application/json";
payload = payload.replace("'", "\\\"");
try {
JSONParser jsonParser = new JSONParser();
JSONObject jsonPayload = (JSONObject) jsonParser.parse(payload);