Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Issue with Message copying › Re: Issue with Message copying
July 28, 2008 at 7:39 AM
#20249
It’s how .NET references work with an XmlDocument. You might want to include your code, but the problem is probably because the XmlDocument is pointing to your first message, then you change the XmlDocument, the first message is now changed. To avoid this, create a new instance of a second XmlDocument (actually code: xmlDoc2 = new System.Xml.XmlDocument();