通過InfoPath Form產生的XML檔案在檔案開頭的地方都會附加上一段特定的資訊,用於標識該XML檔案是由什麼版本的InfoPath Form產生的,所對應的XSN模板的存放位置等資訊,如所示:
那麼我們在使用XDocument.Load()方法載入該XML檔案之後,如何擷取到檔案頭中相關的節點資訊呢?如mso-infoPathSolution。
在XmlNodeType類型中,ProcessingInstruction申明了類似於“<?pi test?>” 的節點,我們可以通過該屬性來篩選XML的節點,下面的函數用於找出InfoPath Form XML檔案中的檔案頭資訊,並將mso-infoPathSolution節點中的href屬性值做修改,將XSN模板的位置修改成別的伺服器中對應的位置。
1 /// <summary>
2 /// Replace the reference url with the target server name for each InfoPath xml file.
3 /// </summary>
4 /// <param name="path"></param>
5 /// <param name="targetServer"></param>
6 public static void ReplaceReferenceUrl(string path, string targetServer)
7 {
8 const string pattern = "href=\"http://.*?/"; // Regular expression used for replacing the reference url in the XML files.
9 DirectoryInfo info = new DirectoryInfo(path);
10 FileInfo[] files = info.GetFiles("*.xml");
11
12 foreach (FileInfo file in files)
13 {
14 XDocument document = XDocument.Load(file.FullName);
15 List<XNode> list = document.Nodes().Where(t => t.NodeType == System.Xml.XmlNodeType.ProcessingInstruction).ToList<XNode>();
16 if (list != null)
17 {
18 foreach (XNode item in list)
19 {
20 XProcessingInstruction tmp = item as XProcessingInstruction;
21 if (tmp.Target.Equals("mso-infoPathSolution"))
22 {
23 Regex reg = new Regex(pattern);
24 tmp.Data = reg.Replace(tmp.Data, "href=\"http://" + targetServer + "/");
25 document.Save(file.FullName);
26 break;
27 }
28 }
29 }
30 }
31
32 DirectoryInfo[] direcotries = info.GetDirectories();
33 foreach (DirectoryInfo directory in direcotries)
34 {
35 ReplaceReferenceUrl(directory.FullName, targetServer);
36 }
首先通過拉姆達運算式 找出所有ProcessingInstruction類型的節點,然後使用Regex替換href屬性的值(注意只替換了其中ServerName的部分)。後面的遞迴調用表示該方法允許修改指定目錄中所有的XML檔案。
在SharePoint中,很多地方使用InfoPath Form來收集XML資料檔案,當需要批量上傳InfoPath XML檔案時,修改檔案頭資訊是必要的步驟,通過上面的函數,我們可以很簡單地實現這一點!記錄一下,以方便日後查閱。