Hi @Roberto Ortega ,
URL access in Reporting Services is specifically designed to enable access to individual reports over a network. This type of access is best for integrating report viewing and navigation into a custom Web application. To use URL access in Web applications, you can:
- Address a URL to a specific report server from a Web site or portal.
- Use a form POST method and pass query string parameters to a report server URL using form fields.
Internet Explorer has a maximum URL length of 2,083 characters. This limit applies to both POST and GET request URLs. POST, however, is not limited by the size of the URL for submitting name/value pairs as part of a form, because they are transferred in the header and not the URL.
For more information. please see: URL Access Through a Form POST Method.
Microsoft SQL Server 2017 Reporting Services support Representational State Transfer (REST) APIs. The REST APIs are service endpoints that support a set of HTTP operations (methods), which provide create, retrieve, update, or delete access for resources within a report server.
Reporting Services REST APIs support DELETE, GET, HEAD, PUT, POST, and PATCH methods.
A REST API request/response pair can be separated into five components:The request URI; HTTP request message header fields; Optional HTTP request message body fields, to support the URI and HTTP operation; HTTP response message header fields; Optional HTTP response message body fields.
For more information, please see: Develop with the REST API for Reporting Services.
If you use the Report Viewer control and there is no report server locally, you will not be suitable to use url access and use Rest API to access the report server.
Best Regards,
Joy
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.