我有:
private readonly ReportingService2010 _rs = new ReportingService2010();
错误:
The type or namespace name 'ReportingService2010' could not be found (are you missing a using directive or an assembly reference?)
我设置了对 SSRS 服务的引用。正如我所料,该参考资料没有让我访问 ReportingService2010。最接近的是:
MySsrsServiceNamespace.ReportingService2010SoapClient
我应该如何使用该ReportingService2010
课程? MSDN模糊地列出了这个类。
请注意我尝试使用ReportingService2010SoapClient
. 此类与 ReportingService2010 的文档不匹配。例如,ListChildren()
只接受 4 个参数且 Url 属性不存在。