I'm working with SSRS server.
I saw in many places : in the microsoft web, in youtube tutorials or in this forum how integrate paginated reports (.rdl) on a .net project. But I can't find any tutorial of how integrate
mobile reports
in a .net project.
I'll be more explicit, this option that we can do with .rdl reports:
How can we do the same with
mobile reports
?
Plis I need your help. I need to integrate mobile reports in a mvc asp.net project.
Your response indicates you are using the browser to view an MVC application on a mobile device. Therefore you are NOT creating a mobile application that is installed on a mobile device.
You have a few choices with ASP.NET MVC. ASP.NET Web Forms comes with a Report Viewer control. You could add a Web Forms page(s) to the project.
Integrating Reporting Services Using SOAP
Develop with the REST APIs for Reporting Services
URL Access (SSRS)
Authentication with the Report Server
I use the SOAP services. Since SSRS uses Windows Authentication, I configure the application pool to run the web application under a Windows Service account that has access to SSRS.
Can you send some code example? BTW "mobile" reports doen't mean only mobile devices. Mobile reports are a kind of reports that can be seen in any device but it has responsive characteristics. I want some way to display it on my asp.net web (this can be seen in any browser and any device: tablet, desktop, mobile, etc...
The links have code examples.
First, create a service reference using Visual Studio;
Accessing the SOAP API
and
Building Applications Using the Web Service and the .NET Framework
. Once you have the proxy setup and authentication working, then you need to read the docs to understand what method to call and what parameters to set to render a report.
Calling Web Service Methods
Again, I run the web application under a Windows service account that has access to SSRS and SQL Server.
Web Service Authentication
Authentication in Reporting Services
Authorization in Reporting Services
Here's a GitHub repo that illustrates how to execute a report.
https://gist.github.com/madcodemonkey/17216111f8ffa8d4515455fb90e1b4e9
SSRS Mobile reports are only viewable via the Power BI Mobile App. Once this app is installed on a mobile device, the user can connect to the reporting server and see the reports.
there is a separate integration of SSRS to Power BI desktop users.
Hi @
SSRS-VS
I'm sorry I don't know much about asp.net.
Here are some related discussions, which you may use as a reference:
https://stackoverflow.com/questions/39910411/unable-to-view-sql-server-mobile-report-in-asp-net-report-viewer
.
Hope this helps you.
Best regards,
Aniya