My caller flow invokes a callee. The signature of the output result returned by the callee is shown below:
docA (document)
…docListB (document list)
…strC (string)
Unfortunately, the callee returns data with a different signature, e.g.
docA (document)
…docB (document)
…strC (string)
How can my caller access the returned data when its signature contains a list, but the actual data does not?
I tried mapping with index=0
I tried mapping the formal signature to the actual signature
I tried accessing the result with queryXmlNode (after converting documentToXMLString, xmlStringToXMLNode)
#Flow-and-Java-services#webMethods#Integration-Server-and-ESB