Schema of Response of SQL adapter is as follows.
ITD_IDEA //—–Root Node 1
-UT //—– Node 2
– OT //—– Node 3
-OrderID // —- Child 1
-Status // —- Child 2
-Mail // —- Child 3
Out of this mail is child element which is repeated number of times.
Also i have created another XML schema as:
<Schema> //—–Root Node
Record //—– Node 1
Repeated //—– Node 2
OrderID // —- Child 1
Status // —- Child 3
Mail // —- Child 3
Expression Box present in Atomic Shape consist of code as:
xmlDoc = ITD_IDEA_Resp.Parameters;
xmlNodeList= xmlDoc.SelectNodes(\”//*[local-name() =’ut’ ] \”);
Enum = xmlNodeList.GetEnumarator();
It gives me error for Xpath given in Expression box.
How i can resolve this Problem?
Thanks in advance.