I want to get file list from SharePoint with this query:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<listName>Documents</listName>
<query>
<Query xmlns="">
<Where>
<Eq>
<FieldRef Name="FSObjType" />
<Value Type="Lookup">1</Value>
</Eq>
</Where>
</Query>
</query>
<viewFields><ViewFields xmlns="" /></viewFields>
<queryOptions>
<QueryOptions xmlns="">
<IncludeMandatoryColumns>TRUE</IncludeMandatoryColumns>
<DateInUtc>TRUE</DateInUtc>
</QueryOptions>
</queryOptions>
</GetListItems>
</soap:Body>
</soap:Envelope>
But SharePoint return error message saying that the column number for research reach the administrator limit.
Could you help me please.
I believe your problem involves the List View Lookup threshold. To increase that, you must
User contributions licensed under CC BY-SA 3.0