Re: Extracting Node Attributes

Home Page Forums BizTalk 2004 – BizTalk 2010 Extracting Node Attributes Re: Extracting Node Attributes

#16826

I got it working.  You nudges and good questions got me on the right track.

That Instance XPath property was the key to getting the right syntax in the xpath query.  My final query looked like this if anyone is interested.

AddNoteRequest.text = xpath(WachNewAccount,"string(/*[local-name()='Header']/*[local-name()='AccountNew']/*[local-name()='NoteNew'][" + counterStr + "]/@*[local-name()='Narrative'])");

Thanks!