Hoe InfoPath XML-bestand in Bibliotheek Forum Programmatisch bewerken in SharePoint 2007

De onderstaande regels code snippet is het actualiseren van de InfoPath XML-record(bestand)

SPWeb _web = SPContext.Current.Web;
SPList _list = _web.Lists[“SampleFormLib”];

MemoryStream myInStream = new MemoryStream(item.File.OpenBinary());
XmlTextReader reader = new XmlTextReader(myInStream);

XmlDocument doc = new XmlDocument();
doc.Load(reader);

reader.Close();
myInStream.Close();

XmlNamespaceManager NamespaceManager = new XmlNamespaceManager(doc.NameTable);
nameSpaceManager.AddNamespace(“mijn”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);

doc.DocumentElement.SelectSingleNode(“mijn:Status”, nameSpaceManager).InnerText = “Opgeslagen”;
doc.DocumentElement.SelectSingleNode(“mijn:SaveDate”, nameSpaceManager).InnerText = DateTime.Today.ToString();
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
Spfile newFile = _web.Folders[“SampleFormLib”].Files.Add(item.File.Name.ToString(), (encoding.GetBytes(doc.OuterXml)), ware);
item.File.Update();

Zorg ervoor dat u item.File.Update uit te voeren() om de wijzigingen te plegen (Ik heb de fouten tijdens het uitvoeren van item.Update() and spent couple of hours to find 🙁 )

1 commentaar naar Hoe InfoPath XML-bestand programmatisch op Bewerken in Bibliotheek Forum in SharePoint 2007

Laat een reactie achter

U kunt gebruik maken deze HTML-tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>