I have a use case, which requires the javascript adapter to call a SOAP service and then to call a DB stored procedure. The SOAP service returns a list in xml format, which needs to be passed along into the DB stored procedure.
My challenge is DB stored procedure requires the xml input, but within the MF adapter the SOAP response comes back as JSON.
- What is the best way to solve this within MF adapter, assuming i cannot change SOAP and DB stored procedure.
- Is it possible to obtain raw xml in SOAP service call within MF javascript adapter?
- Is it possible to use third party json to xml converters in javascript adapters?
Thanks