Reporting Services

Soldato
Joined
18 Oct 2002
Posts
4,904
Trying to find the answer to my parameters issue.

I've got a front end that calls the reporting services using the webservice.

Now I can create a simple report that requires a number of parameters that are of type string and that all works fine when I call it.

Now if I change one of the properties to be a bool and attempt to call it everything falls over as it can't convert the sting to a bool.

When i'm calling reporting services i'm creating a ParameterValue array which contains all the parameter values my problem is that it only accepts a string as a value.

I've tried sending a string that it could easily convert (if its tryingto) e.g. "1", "0" etc.

I can't see any other option to send it specific types Any ideas?
 
Soldato
OP
Joined
18 Oct 2002
Posts
4,904
Managed it its just "True", "False" :)
surprised there's not a extra property type to define the type
 
Back
Top Bottom