SQL Reporting Service Report Image Error - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T08:11:34Z http://stackoverflow.com/feeds/question/970698 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/970698/sql-reporting-service-report-image-error 1 SQL Reporting Service Report Image Error Mike Wills 2009-06-09T15:14:16Z 2009-06-15T16:14:19Z <p>For a quick temporary solution I made an image of a form that the users wanted to have programatically filled out. I then embedded that image in a report and filled the page with the image. I then put the fields on top of the image to fill out the areas in the form that needs filling. I realize this may not be the best solution, but it worked and we needed to get something working in just a couple days and as long as the user exports it to PDF, it works fine.</p> <p>Normally there are only a few pages, but today they have almost 40 pages. The problem is that after about page 35, the image becomes a small red X (like when an image is missing on a web page) but it will still print the text that goes on top of the image. </p> <p>To add to my confusion, after a couple tweaks of how it page breaks, the report will run fine on my PC but not on the server. This report is using the Visual Studio reports and are stored on the intranet server not the SQL Server.</p> <p>The image is about 250k and is a PNG.</p> <p>I hope I have explained this clearly. Any ideas?</p> http://stackoverflow.com/questions/970698/sql-reporting-service-report-image-error/972035#972035 0 Answer by beakersoft for SQL Reporting Service Report Image Error beakersoft 2009-06-09T19:27:21Z 2009-06-09T19:27:21Z <p>could it be something along the lines of the http request is getting to large when your hitting the 35th page. I think the default http request size is 4mb on most asp.net applications. It might have logged something into the app log.</p> <p>you can increase the size of the max http request by editing the machine.config file see <a href="http://msdn.microsoft.com/en-us/library/e1f13641%28vs.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/e1f13641(vs.71).aspx</a></p> http://stackoverflow.com/questions/970698/sql-reporting-service-report-image-error/975058#975058 0 Answer by Ed Harper for SQL Reporting Service Report Image Error Ed Harper 2009-06-10T11:35:15Z 2009-06-10T11:35:15Z <p>If you're on SQL 2005, you may find you can improve matters by upgrading to SP2 + CU10 or SP3 + CU1.</p> <p>See <a href="http://stackoverflow.com/questions/510978/ssrs-broken-missing-toggle-images-in-html-reports">this question</a>, which helped me resolve part of a similar issue.</p>