I have a report which data source is a Web Service API, the API requires some parameters and I want to pass them in the "Content URI" property of the data source.
Is it possible to assign parameters to the Content URI?
Note: when I write something like
jsondoc=http:\localhost:3480\resource.json?param1=&Parameters!Data.Value
The URI is automatically changed to
..\..\..\..\applications\ActiveReportsJS_Designer\jsondoc=http:\localhost:3480\resource.json?param1=&Parameters!Data.Value
and it is not possible to load the data source from the Web Service
Reference: https://www.grapecity.com/activereportsjs/docs/v1/DeveloperGuide/ActiveReportsJSViewer/Features
here are steps that are currently to be used for parametrized web-service requests as a report's data source:
jsondoc=http:\localhost:3480\resource.json?param1=&Parameters!Data.Value
="jsondoc=http:\localhost:3480\resource.json?param1=" & Parameters!Data.Value
- this the expression that evaluated at runtime based on the parameter's value.