从SSRS 2005请求Sharepoint 2007列表

从SSRS 2005请求Sharepoint 2007列表,sharepoint,sharepoint-2007,reportingservices-2005,Sharepoint,Sharepoint 2007,Reportingservices 2005,正如标题所说,我正在尝试将sharepoint网站上的一些列表项添加到SSR2005报告中。我尝试对SSRS 2008的一些教程进行如下跟踪和改编: 问题是,当我尝试验证我的查询时,我在第六步中被卡住了。我试着传递我在下面发布的一些问题: <Query> <SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems </SoapAction> <Method Namespace

正如标题所说,我正在尝试将sharepoint网站上的一些列表项添加到SSR2005报告中。我尝试对SSRS 2008的一些教程进行如下跟踪和改编: 问题是,当我尝试验证我的查询时,我在第六步中被卡住了。我试着传递我在下面发布的一些问题:

<Query>
<SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems
</SoapAction>
<Method Namespace='http://schemas.microsoft.com/sharepoint/soap/' Name = 'GetListItems'>
<Parameters>
<Parameter Name='listName'>
<DefaultValue>EraDemandes</DefaultValue>
</Parameter>
<Parameter Name='rowLimit'>
<DefaultValue>100</DefaultValue>
</Parameter>
<Parameter Name='query' Type='xml'>
<DefaultValue>
  <Query>
    <Where>
      <Eq>
        <FieldRef Name='ID'/>
        <Value Type='Integer'>1016</Value>
      </Eq>
    </Where>
  </Query>
</DefaultValue>
</Parameter>
<Parameter Name='viewFields' Type='xml'>
<DefaultValue>
 <ViewFields> 
  <FieldRef Name='Title' />
    <FieldRef Name='ID' />
 </ViewFields>
</DefaultValue>
</Parameter>
<Parameter Name='queryOptions' Type='xml'>
<DefaultValue>
<QueryOptions>
   <IncludeMandatoryColumns>FALSE</IncludeMandatoryColumns>
   <DateInUtc>TRUE</DateInUtc>
</QueryOptions>
</DefaultValue>
</Parameter>
</Parameters>
</Method>
<ElementPath IgnoreNamespaces='True'>*</ElementPath>
</Query>

    <Query>
      <SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems</SoapAction>
        <Method Namespace="http://schemas.microsoft.com/sharepoint/soap/" Name="GetListItems">
          <Parameters>
            <Parameter Name="listName">
              <DefaultValue>Liste des Demandes</DefaultValue>
            </Parameter>
          </Parameters>
        </Method>
      <ElementPath IgnoreNamespaces="True">*</ElementPath>
    </Query>

http://schemas.microsoft.com/sharepoint/soap/GetListItems
埃拉德曼德斯
100
1016
错误的
真的
*
http://schemas.microsoft.com/sharepoint/soap/GetListItems
需求列表
*
我试图删除/修改所有参数,但没有成功。我真的不熟悉SSR,所以请继续问你需要的每一个问题。 我自己几乎没有问题:

  • 在这两个查询中,我对列表使用了两个不同的名称:“EraDemandes”是我通过sharepoint访问列表时在URL中得到的名称,“Liste des Demandes”是sharepoint中列表的名称。我相信在sharepoint中有两个名称,一个显示名称和一个sharepoint名称。我应该用哪一个
  • 我的根Sharepoint网站集是
    'http://m-epderaqua/default.aspx“
    和我要添加的列表位于此集合的所有子网站上(
    http://m-epderaqua/ERA73/default.aspx 或http://m-epderaqua/ERA38/default.aspx
    )。我应该在数据源中使用哪个网址?我是否应该使用多个数据源(如每个子网站一个)

请帮帮我。

我不知道为什么,但它现在工作得很好。我想维修队在周末做了些什么,但我不知道