I have created a asp.net Report server web site using .net frame work 3.5 sp1 currently hosting application on Rackspace Cloud where they don't allow reportviewer.exe to be installed on the Server. So is there a solution where i can used the Rdlc report without installing ReportViewer.exe. Need a solution Urgently..
views:
312answers:
1download the report viewer redist applicable to the version of RDLC you are developing against...
8.0 is VS 2005:
google "microsoft report viewer 2005 redistributable sp1"
9.0 is VS 2008:
google "microsoft report viewer 2008 redistributable sp1"
10.0 is VS 2010
google "microsoft report viewer 2010 redistributable"
then either:
install (ReportViewer.exe) the appropriate version on you PC and then get the dlls you need out of the GAC using gacutil.exe and once you have the dlls then deploy the dlls along with your applicaiton as you would any other dlls
open up ReportViewer.exe with your favourite archive program (i.e. 7Zip) and then extract the cab file, then open the cab with 7zip and get the dlls you need.
done, cut, print...
this is just off the top of my head - let me know if you need more details (but the above should be enough to get you over the line)