getting JSON Exception while reading file in custom transport handler | Community
Skip to main content
New Participant
April 24, 2017
Solved

getting JSON Exception while reading file in custom transport handler

  • April 24, 2017
  • 2 replies
  • 704 views

getting JSON Exception while reading file in custom transport handler

 InputStream is = replicationTransaction.getContent().getInputStream();

jsonTxt = IOUtils.toString( is );

JSONObject pageContent = new JSONObject(jsonTxt);

 

THE SAME IS working if i try to print the file content in content builder

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by MC_Stuff

Hi Sharath,

It might not be json format Or missing the content type. Pring jsonTxt and Validate the  response at  https://jsonformatter.org/

Thanks,

2 replies

MC_Stuff
MC_StuffAccepted solution
New Participant
April 25, 2017

Hi Sharath,

It might not be json format Or missing the content type. Pring jsonTxt and Validate the  response at  https://jsonformatter.org/

Thanks,

smacdonald2008
New Participant
April 24, 2017

Are you following an online artilce so ppl can try and follow what you are doing.