リスト内の各要素からすべてのフィールドを取得したい。私が見つけた唯一の方法は、すべてのフィールドを含むビューを作成することです。しかし、私は新しいビューを作成したくありません。試してみましたが、光栄ではないようです。それが機能した場合、GetList ですべてのフィールドを取得し、それに基づいて ViewFields を設定できます。
xml 要求からの既定のビューをオーバーライドするビューはありますか? 私の現在のXMLは以下です。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://schemas.microsoft.com/sharepoint/soap/" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<soap:Body>
<s0:GetListItems>
<s0:listName xsi:type="s:string">{GUID}</s0:listName>
<s0:QueryOptions>
<s0:ViewAttributes Scope="Recursive"></s0:ViewAttributes>
<s0:IncludeMandatoryColumns>TRUE</s0:IncludeMandatoryColumns>
</s0:QueryOptions>
<s0:Query></s0:Query>
<s0:ViewFields>
<s0:FieldRef xsi:type="s:string" Name="ID"></s0:FieldRef>
<s0:FieldRef xsi:type="s:string" Name="CellPhone"></s0:FieldRef>
<s0:FieldRef xsi:type="s:string" Name="FirstName"></s0:FieldRef>
</s0:ViewFields>
</s0:GetListItems>
</soap:Body>
</soap:Envelope>