SSRS report with web service
Is it possible to use web service instead of dll in the SSRS report?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Tuhin PaulPosted Mar 24, 2025, 5:48 PM
The web service provides real-time or dynamic data to the SSRS report.
Tuhin PaulPosted Mar 24, 2025, 5:39 PM
When to Use a DLL Instead of a Web Service
Tuhin PaulPosted Mar 24, 2025, 5:39 PM
Steps to Use a Web Service in SSRS
Understand the Web Service:
Create a Data Source for the Web Service:
Define a Dataset:
GETmethod to fetch data.Transform the Data (if needed):
Bind Data to the Report:
Test the Report:
Tuhin PaulPosted Mar 24, 2025, 5:38 PM
Yes, it is possible to use a web service instead of a DLL in an SSRS (SQL Server Reporting Services) report. SSRS supports integrating data from various sources, including web services, databases, and custom assemblies (DLLs). Using a web service can be particularly useful when you want to fetch dynamic or real-time data from an external API or service.
Amira BedhiafiPosted Mar 24, 2025, 3:37 PM
You can't directly call a web service from the report itself.
You can define a dataset that pulls data from a web service endpoint:
Use XML or JSON as the data source.
Supported in SSRS 2016+ (for JSON).
Use Query Designer to configure HTTP calls if supported.