i need load xdocument
within expression shape in biztalk 2010 orchestration. can in c#
, without issues.
xdocument xml = xdocument.load(@"c:\temp\files\samplefile.xml");
but in expression shape don't have xdocument.load method
. use linq xml
. possible?
add reference system.xml.linq
assembly , use qualified type name in expression shape:
system.xml.linq.xdocument.load(struri);
i hope helps.
Comments
Post a Comment