假设我在 SharePoint 2010 网站中有同一文档的三个版本。我将如何使用 Web 服务检索第二个版本的元数据?
我知道我可以使用以下 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>
如何修改它以便检索任何现有版本?