2009-05-05 41 views

回答

3

我结束了在与SharePoint Web服务一起使用C#程序来实现这一目标。我还用埃里克白的博客here扩展方法(GetXElement,GetXmlNode),以这使得从SharePoint更容易使用的XML和的XMLNodes之间XElements转换。

下面是大多数传输列表数据,包括附件所需的代码的模板,从一个SharePoint列表(无论是2003或2007年)到另一个问题:

1)这是代码后移动附件一个新项目已被添加到目标列表。

// Adds attachments from a list item in one SharePoint server to a list item in another SharePoint server. 
// addResults is the return value from a lists.UpdateListItems call. 
private void AddAttachments(XElement addResults, XElement listItem) 
{ 
    XElement itemElements = _listsService2003.GetAttachmentCollection(_listNameGuid, GetListItemIDString(listItem)).GetXElement(); 

    XNamespace s = "http://schemas.microsoft.com/sharepoint/soap/"; 

    var items = from i in itemElements.Elements(s + "Attachment") 
       select new { File = i.Value }; 

    WebClient Client = new WebClient(); 
    Client.Credentials = new NetworkCredential("user", "password", "domain"); 

    // Pull each attachment file from old site list and upload it to the new site list. 
    foreach (var item in items) 
    { 

     byte[] data = Client.DownloadData(item.File); 
     string fileName = Path.GetFileName(item.File); 
     string id = GetID(addResults); 
     _listsService2007.AddAttachment(_newListNameGuid, id, fileName, data); 
    } 
} 

2)代码,通过老SharePoint列表进行迭代,并填充新的。

private void TransferListItems() 
    { 

     XElement listItems = _listsService2003.GetListItems(_listNameGuid, _viewNameGuid, null, null, "", null).GetXElement(); 

     XNamespace z = "#RowsetSchema"; 
     foreach (XElement listItem in listItems.Descendants(z + "row")) 
     { 
      AddNewListItem(listItem); 
     } 
    } 

    private void AddNewListItem(XElement listItem) 
    { 
     // SharePoint XML for adding new list item. 
     XElement newItem = new XElement("Batch", 
      new XAttribute("OnError", "Return"), 
      new XAttribute("ListVersion", "1"), 
      new XElement("Method", 
       new XAttribute("ID", "1"), 
       new XAttribute("Cmd", "New"))); 

     // Populate fields from old list to new list mapping different field names as necessary. 
     PopulateFields(newItem, listItem); 

     XElement addResults = _listsService2007.UpdateListItems(_newListNameGuid, newItem.GetXmlNode()).GetXElement(); 

     // Address attachements. 
     if (HasAttachments(listItem)) 
     { 
      AddAttachments(addResults, listItem); 
     } 
    } 

    private static bool HasAttachments(XElement listItem) 
    { 
     XAttribute attachments = listItem.Attribute("ows_Attachments"); 

     if (System.Convert.ToInt32(attachments.Value) != 0) 
      return true; 

     return false; 
    } 

3)对于该样品杂项支持代码。

using System.Collections.Generic; 
    using System.Linq; 
    using System.Windows.Forms; 
    using System.Xml.Linq; 
    using System.Net; 
    using System.IO; 

    // This method uses an map List<FieldMap> created from an XML file to map fields in the 
    // 2003 SharePoint list to the new 2007 SharePoint list. 
    private object PopulateFields(XElement batchItem, XElement listItem) 
    { 
     foreach (FieldMap mapItem in FieldMaps) 
     { 
      if (listItem.Attribute(mapItem.OldField) != null) 
      { 
       batchItem.Element("Method").Add(new XElement("Field", 
        new XAttribute("Name", mapItem.NewField), 
         listItem.Attribute(mapItem.OldField).Value)); 
      } 
     } 

     return listItem; 
    } 

    private static string GetID(XElement elem) 
    { 
     XNamespace z = "#RowsetSchema"; 

     XElement temp = elem.Descendants(z + "row").First(); 

     return temp.Attribute("ows_ID").Value; 
    } 

    private static string GetListItemIDString(XElement listItem) 
    { 
     XAttribute field = listItem.Attribute("ows_ID"); 

     return field.Value; 
    } 

    private void SetupServices() 
    { 
     _listsService2003 = new SPLists2003.Lists(); 

     _listsService2003.Url = "http://oldsite/_vti_bin/Lists.asmx"; 
     _listsService2003.Credentials = new System.Net.NetworkCredential("username", "password", "domain"); 

     _listsService2007 = new SPLists2007.Lists(); 

     _listsService2007.Url = "http://newsite/_vti_bin/Lists.asmx"; 
     _listsService2007.Credentials = new System.Net.NetworkCredential("username", "password", "domain"); 

    } 

    private string _listNameGuid = "SomeGuid";  // Unique ID for the old SharePoint List. 
    private string _viewNameGuid = "SomeGuid";  // Unique ID for the old SharePoint View that has all the fields needed. 
    private string _newListNameGuid = "SomeGuid"; // Unique ID for the new SharePoint List (target). 

    private SPLists2003.Lists _listsService2003; // WebService reference for the old SharePoint site (2003 or 2007 is fine). 
    private SPLists2007.Lists _listsService2007; // WebService reference for the new SharePoint site. 

    private List<FieldMap> FieldMaps; // Used to map the old list to the new list. Populated with a support function on startup. 

    class FieldMap 
    { 
     public string OldField { get; set; } 
     public string OldType { get; set; } 
     public string NewField { get; set; } 
     public string NewType { get; set; } 
    } 
+0

正是我需要的。非常感谢分享! – Mat 2014-10-30 08:02:42

0

我可能会尝试使用Web服务来实现一些东西 - 我知道2007年的附件URL会显示在ows_Attachements属性中,一旦拥有了,您可以执行相当标准的下载/上传。自从2003年我做了任何事情以来已经有一段时间了,但我认为这不是一个新领域。

如果你有麻烦从2003年获得正确的数据,你总是可以在整个网站迁移到2007,然后提取您想要使用最新的API数据。

0

您是否尝试过(“与内容”)作为模板保存列表中,该文件保存到2007年门户网站的模板,然后创建使用“自定义”模板的新名单?如果附件和项目的总数超过10MB,那么这将不起作用,而且我不能100%确定这将适用于2003年> 2007年。它应该需要< 10分钟,所以如果您没有已经。

0

我要创建这个项目:http://sourceforge.net/projects/splistcp对于类似的任务,但为了保留修改和创建时间和用户,我不得不使用本地API上的目标。您的方法的好处似乎更容易支持2003年和2007年的来源。