Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm dealing with a tRest Client retrieving data from a Web Service, in this case, I get a XML file with all those data. But, at the moment I want to read it, and transform it later to do other things, it can't escape some chars. Cases like & (&), > or < (>, <) are well transformed but this case &# 19, is not possible, not letting me to continue a proper data integration. My question is
So, thanks for your time and kind regards
Hi
We can't control what return from the Web Service provided by others. Have a try to replace all special chars before reading it. eg:
tRest--main--tJavaRow
on tJavaRow:
output_row.body=input_row.body.replaceAll("&","&");
Regards
Shong
Hi @Desmond Bullard,
Can you give us an example of the XML you are receiving in its entirety, straight from the tRestClient (obviously removing or replacing sensitive data). It would help to see what you are actually receiving here.
Regards
Richard