I'm using SharePoint Content Deployment Wizard by Chris to migrate the SharePoint Contents (www.sharepointnutsandbolts.com/.../...content.html) . I'm facing an issue while importing the custom SSRS (SQL Server Reporting Services) Report Viewer Web Part. On import side, web part fails to view the report as it's ReportServerURL contains Export Machine name. So, on Machine A(http://A) , ReportServerURL is (http://B/ReportServer/report.rdl) where B is exported Machine.
Here is the Detailed Error Description :
The path of the item 'http://ExportMachineName/My Reports/TestReportAfterExport1.rdl' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash. (rsInvalidItemPath)
I've exported the same web part into .dwp and import the same, then I got the same error. So, I renamed .dwp to .xml and replaced the export machine name with the Import Machine's in the ReportPath as follows :
<ReportPath xmlns="urn:schemas-microsoft-com:SqlServerReportViewer">http://A/My Reports/TestReportAfterExport1.rdl</ReportPath>
Then it worked !! My query is how to dissolve this issue using Content Deployment Wizard ?