Author: kwright
Date: Wed Jul 11 15:06:27 2012
New Revision: 1360221
URL: http://svn.apache.org/viewvc?rev=1360221&view=rev
Log:
Use null instead of site, as indicated by MS documentation
Modified:
manifoldcf/branches/CONNECTORS-470/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SPSProxyHelper.java
Modified:
manifoldcf/branches/CONNECTORS-470/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SPSProxyHelper.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-470/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SPSProxyHelper.java?rev=1360221&r1=1360220&r2=1360221&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-470/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SPSProxyHelper.java
(original)
+++
manifoldcf/branches/CONNECTORS-470/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SPSProxyHelper.java
Wed Jul 11 15:06:27 2012
@@ -626,7 +626,7 @@ public class SPSProxyHelper {
while (true)
{
- GetListItemsResponseGetListItemsResult items =
stub1.getListItems(docLibrary, "", orderByQuery, viewFields,
Integer.toString(requestSize), buildPagingQueryOptions(nextChunkDescription),
site);
+ GetListItemsResponseGetListItemsResult items =
stub1.getListItems(docLibrary, "", orderByQuery, viewFields,
Integer.toString(requestSize), buildPagingQueryOptions(nextChunkDescription),
null);
if (items == null)
return false;
@@ -1666,7 +1666,7 @@ public class SPSProxyHelper {
newFieldNames.add("ProgId");
GetListItemsViewFields viewFields = buildViewFields(newFieldNames);
- GetListItemsResponseGetListItemsResult items =
stub1.getListItems(docLibrary, "", q, viewFields, "1", null, site);
+ GetListItemsResponseGetListItemsResult items =
stub1.getListItems(docLibrary, "", q, viewFields, "1", null, null);
if (items == null)
return result;