Posts

Showing posts with the label REST

Xml to Json conversion issue in REST

Image
 I had a requirement to convert XML to JSON format using rest receiver channel. I wanted to remove the root JSON tag in the receiver channel. My DT was DT_Company  Record    Field      field1      field2    Field3    Field4    Field5    Refer note -  2743939   -  XML Payload to JSON Conversion in REST receiver adapter https://apps.support.sap.com/sap/support/knowledge/en/2743939#:~:text=A%20module%20parameter%20called%20%22setIgnoredElements,after%20converting%20the%20XML%20payload. I used setIgnoreElements and provided value Records to remove JSON tag in Module configuration  and checked Strip out element in the receiver channel  This works fine for single record. Note -> But in case of multiple records, this doesn't work. I also haven't explored on this part yet, but seems that this can be sorted out using XML JSON Conversion Rules. Helpful link -  https://blogs.s...