Leveraging the XPATH parsing and XML handling in Appian
Team, want to check on these 2 aspects, which we are attempting to leverage in our Appian solution implementation.
1) We are building a solution to retrieve specific data using XPATH from an XML and mapping it to a target location.
We will be using the "xpathdocument" function in Appian to fetch the value from XML.
2) We will also be leveraging the below function to obtain our XML.
- i) Convert the json data we have into an Appian object
- ii) Then convert the Appian object into XML.
--- something like this ---
local!apoPbj: a!fromJson(ri!ipJson)
local!xmlObj: toxml(local!apoPbj, true, "xml")
--- something like this ---
3) Data will be fetched from XML using the 'xpathdocument' method as we mentioned above.
This looks working good when tested.
Question:
1) But I see currently "xpathdocument" method supports only XPATH 1.0. Does Appian have plan to support the newest XPATH version down the line?
2) Do you see any limitations in the above strategy?
