Original: http://blog.csdn.net/lwjnumber/article/details/6590545
9. RDLC Report Deployment (limited to RDLC report Windows application)
1) 4 DLL file extracts required by the RDLC report
The RDLC report file is deployed on the client to work properly and requires 4 DLL files, respectively: Microsoft.ReportViewer.Common.dll, Microsoft.ReportViewer.ProcessingObjectModel.dll, Microsoft.ReportViewer.WebForms.dll and Microsoft.ReportViewer.WinForms.dll. Typically, as long as the developer references the RDLC report-related components, the program compiles with 3 DLL files in addition to Microsoft.ReportViewer.ProcessingObjectModel.dll.
As a result, the developer can simply locate and extract the Microsoft.ReportViewer.ProcessingObjectModel.dll file and then deploy the file to the target machine, along with the other 3 DLL files.
· VS Install directory +/sdk/v2.0/bootstrapper/packages/reportviewer, locate the ReportViewer.exe file and unzip it;
• Locate the Reportv1.cab package in the Unzip directory and extract it to the ReportV1 directory;
• fl_microsoft_reportviewer_processingobject_125592_____x86.3643236f_fc70_11d3_a536_ the file The 0090278a1bb8 file name is modified to Microsoft.ReportViewer.ProcessingObjectModel.dll. In fact, you can find that the 4 files in the Reportv1.cab package are the 4 DLL files mentioned above.
2) Deploy the compiled report application package to the target machine.
3) If it is a Win98 operating system, install it first. NET Redistributable (ie upgrade to version 5.01 and above, install Windows installer2.0 above), there is currently a problem running the RDLC report program under the Win98 operating system (remote processing mode only).
4) Reference Microsoft.SqlServer.Types.dll
Path = C:\Program Files (x86) \microsoft SQL Server\110\sdk\assemblies\microsoft.sqlserver.types.dll Runtime Version = v2 .0.50727 Version = 11.0.0.0
Scenario encountered: Error when using the RDLC parameter
Also attached article:
The way to extract the RDLC reporting related DLLs, you need to package the client with Http://www.tuicool.com/articles/Jn2amiQ
These three DLLs can be obtained using the following instructions
In the Windows Command window, enter SUBST x:%windir%\assembly
After the execution will appear on my Computer an X disk, in the X:\GAC_MSIL directory can find the corresponding file folder, go to find the corresponding version, copy the required DLL version
After copy, in the Windows command Window SUBST x:/D, so you can take the X disk off
After deploying to the Web, remember to put these three DLLs in the bin directory at the same time, you can execute REPORTVIEWR
Transfer to RDLC User manual _RDLC Report deployment