简体   繁体   English

服务参数在SSRS中将其他参数设置为空

[英]Service parameter set other parameters to null in SSRS

I have a report with a multi param query that consumes a wcf service.我有一个使用 wcf 服务的多参数查询的报告。

I set some params with some values:我用一些值设置了一些参数:

@param1 = 1  
@param2 = 2  
@param3 = "some string"  

and report works fine but when I set @param4 = 1 or any other value, then并且报告工作正常,但是当我设置 @param4 = 1 或任何其他值时,然后

@param1 = null  
@param2 = null  
@param3 = null  

and report just uses @param4 value for the query.和报告只使用@param4 值进行查询。

I test the service from a wcf client and the response is right.我从 wcf 客户端测试服务,响应是正确的。

How can I find what happens with this param?.我怎样才能找到这个参数会发生什么?。 I'm using SSRS-2016.我正在使用 SSRS-2016。

Thanks a lot.非常感谢。

我正在向服务发送额外的参数,我删除了这些额外的参数并且工作正常。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM