Report viewer renders under both scenarios but data will not load in either. Under Remote the parameter controls also render and accept data; then when the view report button is clicked the viewer resets to accept parameters but no data is shown. With Local Reports the viewer shows but no report. Both scenarios work on LocalHost. We have been trying to fix this for 3 days now so any help would be greatly appreciated.
Hi, IIS7? If you want me to look over your code my Email is [email protected] Note: Taking a look may help others as I'll be doing Webcasts on this soon. (once I publish the webcasts on MSDeploy) All the best, Mark
Mark, Thanks for the tip. I changed the App Pooling to classic and the local reports are filling correctly. However the Remote reports still do not show data? fortunately at this time none of our reports will be very large so local will work however I am sure we will need remote reporting in the future. Any other tips on Remote? Thanks, Orien
Mark, FYI: I was getting this error with the Remote reports: Microsoft JScript runtime error: 'this._postBackSettings.async' is null or not an object. After setting the script manager EnablePartialRendering = False in the Page_Init of the page with the report viewer the Server reports filled correctly. Also of not is that the Script Mangager needed to be directly in front of the content templates on the master page for the local reports to render/fill. I then retested the App Pool Pipeline Mode by resetting it to Integrated and both Local and Remote failed. Reset to Classic and so far all is working correctly. Again thanks for your time.
Hi, Sorry for the delay I'm laying a ton of porcelain tile currently. On IIS7 you do have to make a few adjustments to resolve those errors. I posted the resolutions in this thread: http://community.discountasp.net/showthread.php?t=8651&highlight=IIS7+report Notice the main thing is you need a new handler in your web.config <httpHandlers> <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" /> </httpHandlers> All the best, Mark