I'm having a problem parsing values out of xml. In this example, I need to get repId from this structure:
<root:meeting xmlns:root="urn:exo:/root">
<set:set xmlns:set="....">
<repset:repSet xmlns:repset="....">
<repset:rep>
<repset:repId>12345</repset:repId>
In my EvaluateXPath I try to do this:
Property: myId
Value: /meeting/set/repSet/rep/repId
I try doing this to set an attribute named myId, but get back an empty
value. What do I need to change to get 12345 for myId?
