0

SharePoint2010サイトに同じドキュメントの3つのバージョンがあるとします。たとえば、Webサービスを使用して2番目のバージョンのメタデータを取得するにはどうすればよいですか?

次のSOAPリクエストで最新バージョンを取得できることを知っています

<?xml version="1.0" ?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
    <GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
        <listName>Shared Documents</listName>
        <viewName></viewName>
        <query>
            <Query><Where><Eq><FieldRef Name="FileRef"/>
            <Value Type="Text">https://mysite.com/sites/DocLib026/Shared Documents/_mytest5.doc</Value></Eq></Where></Query>
        </query>
        <rowLimit>200</rowLimit>
    </GetListItems>
</S:Body></S:Envelope>

これを変更して、既存のバージョンを取得できるようにするにはどうすればよいですか?

4

1 に答える 1

0

ここにあるコードを使用したら、Sharepoint オブジェクト モデルを使用します。

using (SPSite site = new SPSite(“http://SharePointSite”))
{
using (SPWeb web = site.OpenWeb())
{
 SPList docs = web.Lists["Mydocumentlib"];
  foreach (SPFile file in docs.RootFolder.Files)
 {
  Console.WriteLine(“File {0} has next version {1}. Version History:”, file.Url,           file.UIVersionLabel);
  foreach (SPFileVersion v in file.Versions.Cast().Reverse())
  {
    Console.WriteLine(” Version {0} checked in at {1} with this comment: ‘{2}’”,  v.VersionLabel, v.Created, v.CheckInComment);
  }
 }
}}

foreach メソッドを調整して、そこで魔法のようなことをしてください。

于 2012-05-09T20:55:51.273 に答える