Hello
I want to have a UCCX script that checks an XML file and using XPATH I can get somw information (in this case the name)
This is the XML
<Mobile-Numbers>
<employees>
<num>1234567890</num>
<name>John Smit</name>
</employees>
</Mobile-Numbers>
The XPATH would be: /Mobile-Numbers/employees[num="1234567890"]/name to get the name
But in the XML document each person requires two lines (<num> and <name>)
Is it not possible to have the number and the name on one line?
Thanks
JH