Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Local Report vs Server report in ASP .Net Report viewer control

In one of the ASP .Net site we are currently working we have a bulk load of SSRS reports. We have forms authentication for the site and reports have already been created and deployed in the report server. We are having so many problems with authentication when we set the report viewer control to access the server report.

I just want to know what are the advantages or disadvantages of using Local report vs Server Report

Thanks,

Raja

like image 487
Raja Avatar asked Mar 11 '10 18:03

Raja


People also ask

What is the difference between RDL and Rdlc in SSRS?

Q: What is the difference between RDL and RDLC formats? A: RDL files are created by the SQL Server 2005 version of Report Designer. RDLC files are created by the Visual Studio 2008 version of Report Designer. RDL and RDLC formats have the same XML schema.

What is report server in report Builder?

The SSRS Report Builder is a report creation tool which allows users to create, manage and publish reports to SQL Server Reporting Services. We can also create shared datasets with the help of the report builder.

Where are the reports stored for report server?

Report server items are always stored in libraries or in a folder within a library.

What is report Viewer in asp net?

The ASP.NET ReportViewer control is a composite of standard ASP.NET Web Server controls. The ASP.NET ReportViewer comes with four predefined skins: Default, WebBlue, Original and Office2007. The ASP.NET ReportViewer control's toolbar is immutable.


1 Answers

1- client report don't need to report server for rendering. (advantage)

2- you must make a server report by creating a report server project in BIDS but client reports must create in VS.

3- server reports use stored procedure or text script as data provider but client reports use dataset or xml datasource for this.

4- server reports use report server for rendering of the report but for client reports this work done at report viewer control.

5- client reports don't need SSRS installation but server reports need that.

6- for working with server reports you must deploy reports but in client reports you don't need this work.

7- for enterprise projects, it is better that you use server report but in other projects client reports are better.

like image 170
masoud ramezani Avatar answered Sep 28 '22 15:09

masoud ramezani