Home Page › Forums › BizTalk 2004 – BizTalk 2010 › xpath expression inside a loop to pull records/nodes out › Re: xpath expression inside a loop to pull records/nodes out
July 30, 2014 at 9:27 AM
#26428
use like
string xpathstring = system.string.format("/parent/Child/RepeatingNode[position = {0}]", loppingcounter;
xmldoc = (System.Xml.XmlDocument) xpath(Msg, xpathstring);
this will get you the node, this is the implementation of the splitter pattern in the orchestration.
Thanks