Hello.
I have a question about queryXMLNode (version 6.0.1).
Let’s say I pass the following node as input to queryXMLNode:
<?xml version=“1.0”?>
<doc>
<name>
<first>John</first>
<last>Smith</last>
</name>
<date>20040608</date>
</doc>
How do I extract the <name>…</name> element and assign it to an
object variable called NameNode?
If my XQL is “/doc”, then the following is assigned to NameNode:
<name>
<first>John</first>
<last>Smith</last>
</name>
<date>20040608</date>
If my XQL is “/doc/name”, then the following is assigned to NameNode:
<first>John</first>
<last>Smith</last>
What XQL query should I use to assign the following to NameNode?
<name>
<first>John</first>
<last>Smith</last>
</name>
Thanks.
Bob
#Integration-Server-and-ESB#Flow-and-Java-services#webMethods