首页 文章

SSRS Sharepoint集成模式:我的递归参数在哪里?

提问于
浏览
1

有人可以告诉我为什么SSRS Web服务ReportService2005.asmx在ListChildren上有一个递归参数,而Sharepoint集成模式版本ReportService2006.asmx却没有?

ReportService2005:

public CatalogItem[] ListChildren (
    string Item,
    bool Recursive
)

Ref: http://technet.microsoft.com/en-us/library/reportservice2005.reportingservice2005.listchildren.aspx

ReportService2006:

public CatalogItem[] ListChildren (
    string Item
)

Ref: http://technet.microsoft.com/en-us/library/reportservice2006.reportingservice2006.listchildren.aspx

如果我想在sharepoint集成模式下使用ListChildren,我想我必须自己解决?

删除此参数后面的推理?

谷歌没有显示......

1 回答

  • 0

    我已经通过编写自己的代码来修复这个问题,以递归方式检索我需要的目录 .

相关问题