I am working on a reporting project, and the client currently makes use of MS Reporting Services 2000, and I am developing using Reporting Services 2005.
What are the differences between RDLs in Reporting Services 2000 vs 2005?
The RDL is just an XML file, and the difference's I've picked up so far are:
XML Namespace in root element: 2000:
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition" ... >
2005:
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" ... >
- InteractiveWidth + InteractiveHeight elements are supported in 2005, but not 2000. You simply have to delete these tags before deploying.
By fixing the above differences I am able to deploy reports designed in 2005 onto a 2000 server, with no problems.
Are there any other differences that you know of?