I want to achieve as below: document as - XML file contains list of u

I want to achieve as below:

document as - XML file contains list of user node where each user node contains number of element describing user information.

Now, I want to fetch the user node block (all child nodes) match to appian login id and user node's login id child node.

Can any one share me which Appian activity or service would i have to use and how to achieve this.

Thank you...

OriginalPostID-83335

OriginalPostID-83335

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    You can't compare the value directly using Xpath expression like APPAINID='dhaval.soni'.

    Change your Xpath expression as below
    =xpathdocument(cons!AppSignatureXMLFile,"//APPAINID")

    Output will be
              <APPAINID>dhaval.soni</APPAINID>

    Then you have to extract the value (dhaval.soni) from the output string.
Reply
  • 0
    Certified Lead Developer
    You can't compare the value directly using Xpath expression like APPAINID='dhaval.soni'.

    Change your Xpath expression as below
    =xpathdocument(cons!AppSignatureXMLFile,"//APPAINID")

    Output will be
              <APPAINID>dhaval.soni</APPAINID>

    Then you have to extract the value (dhaval.soni) from the output string.
Children
No Data