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>
これを変更して、既存のバージョンを取得できるようにするにはどうすればよいですか?