WebRun - How to read the ErrNbr and ErrStat from the _result property?

 5 Replies
 0 Subscribed to this topic
 52 Subscribed to this forum
Sort:
Author
Messages
Jose Gonzo
Basic Member Send Private Message
Posts: 20
Basic Member
How do you read the ErrNbr and ErrStat from the _result property of WebRun component? Do you use a custom Javascript function? Can you provide a sample flow?
The _result property of WebRun component is in XML format (sample below). The ErrMsg element contains the ErrNbr and ErrStat:
 

Sample _result property:









]]>




















Thanks for all your help. Have a great day.


 
Jose Gonzo
Basic Member Send Private Message
Posts: 20
Basic Member
WebRun_result.xml has the WebRun_result xml. Thx.
Jose Gonzo
Basic Member Send Private Message
Posts: 20
Basic Member
in TXT format since the XML is not allowed. Cheers. Thx.
Attachments
Woozy
Veteran Member Send Private Message
Posts: 709
Veteran Member
I'm not sure if this is the "right" way, but this is how I have done it in the past.   Note:  I'm doing this using the Landmark designer, but it should work the same way on the Classic designer.

Pass your WebRun_output variable into an XML node set to "Parse XML", then go to an Assign node to assign the output to the proper variables using JavaScript xpath-style assigns.  See the attached screen grabs for my sample flow - I just took your xml file and used a file access node to open it, but it should work the same way if you replace my file access node with your webrun node.

Good Luck!
Attachments
Kelly Meade
J. R. Simplot Company
Boise, ID
Woozy
Veteran Member Send Private Message
Posts: 709
Veteran Member
By the way, the result of my sample flow using your xml data is this:

Variables in Process:
vErrStat = MSG
vErrMsg = Success
vErrNbr = 0

Kelly Meade
J. R. Simplot Company
Boise, ID
Jose Gonzo
Basic Member Send Private Message
Posts: 20
Basic Member
Thank you! Issue fixed. Happy Thanksgiving.