如何使用Java通过Web服务检索sharepoint文档库中文件的大小

时间:2013-04-05 10:01:06

标签: java web-services sharepoint filesize

我正在用Java编写一个应用程序,它必须报告SharePoint 2007上文档库中的所有可用文件。该应用程序使用来自ko​​recky(Project Home)的java sharepoint库。一切正常,除了事实,除了几个文件信息,我没有得到文件大小。

具体而言,请求发送到List.asmx webservice,调用GetListItems方法。

请求如下:

<QueryOptions>
    <ViewAttributes IncludeRootFolder="True" Scope="RecursiveAll"/>
    <IncludeMandatoryColumns>
        TRUE
    </IncludeMandatoryColumns>
    <DateInUtc>
        TRUE
    </DateInUtc>
</QueryOptions>

根据网络服务响应中的几个论坛,应该有一个名为 ows_File_x0020_Size 的字段,其中应包含表示文件大小的int,但它缺失。有没有人知道如何修改请求以获得文件大小?

1 个答案:

答案 0 :(得分:3)

您需要说出要调用的字段(在ViewFields中)。最终请求应如下所示:

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
      <listName>My Documents List</listName>
      <viewName></viewName>
      <query><Query></Query></query>
      <viewFields>
        <ViewFields Properties="True">
          <FieldRef Name="FileLeafRef"></FieldRef>
          <FieldRef Name="File_x0020_Size"></FieldRef>
        </ViewFields>
      </viewFields>
      <rowLimit>0</rowLimit>
      <queryOptions>
        <QueryOptions>
          <DateInUtc>True</DateInUtc>
          <Paging ListItemCollectionPositionNext=""></Paging>
          <ViewAttributes Scope="Recursive"></ViewAttributes>
          <IncludeAttachmentUrls>True</IncludeAttachmentUrls>
          <IncludeMandatoryColumns>False</IncludeMandatoryColumns>
          <ExpandUserField>False</ExpandUserField>
        </QueryOptions>
      </queryOptions>
    </GetListItems>
  </soap:Body>
</soap:Envelope>