Thursday, March 29, 2012
Error rendering to PDF, after installing SP1
error from IE:
"Internet Explorer cannot download Format=PDF from myserver.
Internet Explorer was not able to open this Internet site. The requested
site is either unavailable or cannot be found. Please try again later."
Before installing SP1 there were no problems rendering to PDF. Export to
EXCEL and other formats works just fine.
The installation is configured like this:
WEBSERVER:
Windows Sever 2003
Reporting Services Standard Edition + SP1 (Microsoft SQL Server Reporting
Services Version 8.00.878.00)
DBSERVER:
Windows Sever 2003
SQL Server 2000 SP3
The ReportServer, MSSQLSERVER services uses the same Domain account.
I've also seen this problem posted on
http://www.sqlmonster.com/Uwe/Forum.aspx/sql-server-reporting/710/Error-rendering-to-PDF-after-installing-SP1
However there is no solution posted.
Any suggestions on how to resolve this problem would be appreciated
Regards,After hours of testing, i found <Language>no</Language> in the <Style> tag in
one of my textbox... I removed the whole tag and everything works fine. You
need the whole language kode us-en, nb-no etc. search for language in your
xml code
"Jögren Wendel" wrote:
> After installing SP1, reports fails to render to PDF, with the following
> error from IE:
> "Internet Explorer cannot download Format=PDF from myserver.
> Internet Explorer was not able to open this Internet site. The requested
> site is either unavailable or cannot be found. Please try again later."
> Before installing SP1 there were no problems rendering to PDF. Export to
> EXCEL and other formats works just fine.
> The installation is configured like this:
> WEBSERVER:
> Windows Sever 2003
> Reporting Services Standard Edition + SP1 (Microsoft SQL Server Reporting
> Services Version 8.00.878.00)
> DBSERVER:
> Windows Sever 2003
> SQL Server 2000 SP3
> The ReportServer, MSSQLSERVER services uses the same Domain account.
> I've also seen this problem posted on
> http://www.sqlmonster.com/Uwe/Forum.aspx/sql-server-reporting/710/Error-rendering-to-PDF-after-installing-SP1
> However there is no solution posted.
> Any suggestions on how to resolve this problem would be appreciated
> Regards,
>
Error rendering to PDF, after installing SP1
error from IE:
"Internet Explorer cannot download Format=PDF from myserver.
Internet Explorer was not able to open this Internet site. The requested
site is either unavailable or canot be found. Please try again later."
This happened for this specific report only, 10 others rendered to PDF just
as they did before. The mentioned report renders well in all other formats,
including HTML and Excel. And it renders fine on another Reporting Services
server (without SP1).
SQL server has SP3a. Servers do not have _ in their names.
Regards,
Marko PrsicCan you send your rdl and the .rdl.data file for us to investigate?
Fang Wang (MSFT)
Microsoft SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"Marko Prsic" <marko.prsic...kset.org> wrote in message
news:eSwk7U1YEHA.1000@.TK2MSFTNGP12.phx.gbl...
> After installing SP1, a report failed to render to PDF, with the following
> error from IE:
> "Internet Explorer cannot download Format=PDF from myserver.
> Internet Explorer was not able to open this Internet site. The requested
> site is either unavailable or canot be found. Please try again later."
>
> This happened for this specific report only, 10 others rendered to PDF
just
> as they did before. The mentioned report renders well in all other
formats,
> including HTML and Excel. And it renders fine on another Reporting
Services
> server (without SP1).
> SQL server has SP3a. Servers do not have _ in their names.
> Regards,
> Marko Prsic
>
Tuesday, March 27, 2012
Error programaticaly rendering a report using Reporting Services Web Services
My sample report has few parameters that must be passed so I pass these parameters with code.
<My code>
ReportServiceExecution.ReportExecutionService rs = new ReportServiceExecution.ReportExecutionService();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
string extension, mimeType, encoding;
ReportServiceExecution.Warning[] warnings;
string[] streamID;
ParameterValue[] parameters = new ParameterValue[2];
parameters[0] = new ParameterValue();
parameters[0].Name = "pID";
parameters[0].Value = "6548747";
parameters[1] = new ParameterValue();
parameters[1].Name = "pClass";
parameters[1].Value = "8";
ExecutionHeader header = new ExecutionHeader();
ExecutionInfo executionInfo = rs.LoadReport(reportPayslip.Name, null);
executionInfo = rs.SetExecutionParameters(parameters, "en-us");
rs.ExecutionHeaderValue = header;
rs.ExecutionHeaderValue.ExecutionID = executionInfo.ExecutionID;
byte[] report = rs.Render("PDF", "<DeviceInfo><Toolbar>False</Toolbar></DeviceInfo>", out extension, out mimeType, out encoding, out warnings, out streamID);
</My code>
Actually, I have several more parameters but I've checked the collection and all the parameters I want are there and have values. Their names match those found in executionInfo.Parameters. But when I run my code I get the following error on Render():
<Error>
"This report requires a default or user-defined value for the report parameter 'pClass'. To run or subscribe to this report, you must provide a parameter value. > This report requires a default or user-defined value for the report parameter 'pClass'. To run or subscribe to this report, you must provide a parameter value. > This report requires a default or user-defined value for the report parameter 'pClass'. To run or subscribe to this report, you must provide a parameter value."
</Error>
I've double-checked and my parameter array does have the problematic parameter, I passed it a value but when I check executionInfo.Parameters I see that it's the only parameter that hasn't been give a default value after calling SetExecutionParameters(). So my parameters do seem to be passed but one seems to refuse getting a value. If I comment out the SetExecutionParameters() line I get, as expected a similar error but on another parameter (first one in the executionInfo.Parameters collection). So I'm left to beleive that the SetExecutionParameters() has some kind of bug as it works for all but one parameter. I've checked casing, spelling, tried passing phony parameters and from what I've seen I should be getting an error when I pass the parameters if I got something wrong.
Any help would be much appreciated.
I've done some (desperate) tests and changed the following line:
executionInfo = rs.SetExecutionParameters(parameters, "en-us");
to
executionInfo = rs.SetExecutionParameters(parameters, "fr-ch");
I'm currently based in French Switzerland but our reports are written in english, besides, the documentation about this parameter is basically "A .Net language" which is not very helpful. So now it works but I'm afraid if I have to access a server that is of another culture it will fail.
Monday, March 26, 2012
Error Pdf rendering with de language
I have a problem with the pdf rendering.When I try to render the report to
the pdf with diffirent language like "de" or "fr" I give a error.How can I
export the report to the pdf with "de" language'Any ideas'Try to use a specific culture instead of a general one.
--
Nico Cristache [MSFT]
Microsoft SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"Pery" <Pery@.discussions.microsoft.com> wrote in message
news:723265F3-71EF-4AA2-9CC1-868EFEFB230E@.microsoft.com...
> Hi;
> I have a problem with the pdf rendering.When I try to render the report to
> the pdf with diffirent language like "de" or "fr" I give a error.How can I
> export the report to the pdf with "de" language'Any ideas'
Monday, March 12, 2012
error occured trying to render the report
print using the client side activeX printing control after installing sp2
release:
An error occured trying to render the report.
(0x800040005)
? don't have the slightest clue what this could be. I have deleted the
activex installation from the downloaded files directory and tried
reinstalling to no avail. I am running windows server 2003 standard edition.I have the same problem, does anyone have any ideas?
/Magnus
"isamu" wrote:
> I am getting the following error message when previewing or trying to just
> print using the client side activeX printing control after installing sp2
> release:
> An error occured trying to render the report.
> (0x800040005)
> ? don't have the slightest clue what this could be. I have deleted the
> activex installation from the downloaded files directory and tried
> reinstalling to no avail. I am running windows server 2003 standard edition.|||good to hear i'm not the only one, i feel your pain.
bump.
"Magnus" wrote:
> I have the same problem, does anyone have any ideas?
> /Magnus
>
> "isamu" wrote:
> > I am getting the following error message when previewing or trying to just
> > print using the client side activeX printing control after installing sp2
> > release:
> >
> > An error occured trying to render the report.
> > (0x800040005)
> >
> > ? don't have the slightest clue what this could be. I have deleted the
> > activex installation from the downloaded files directory and tried
> > reinstalling to no avail. I am running windows server 2003 standard edition.|||Same problem here too. I get the first page & then the error on the second
page. I also only get the first page when printing & the error at the end.
I have checked my IE explorer settings & verified scripting is turned on.
Anything else to check?
"isamu" <isamu@.discussions.microsoft.com> wrote in message
news:1ECA681E-E40B-4EB7-BB82-DE6609D44651@.microsoft.com...
>I am getting the following error message when previewing or trying to just
> print using the client side activeX printing control after installing sp2
> release:
> An error occured trying to render the report.
> (0x800040005)
> ? don't have the slightest clue what this could be. I have deleted the
> activex installation from the downloaded files directory and tried
> reinstalling to no avail. I am running windows server 2003 standard
> edition.|||This is generally an issue with rendering the report. The
ReportServer<timestamp>.log file should have some information about the
failure.
If that doesn't help there is a way to turn on logging for the print
control. It is a registry setting on the client machine. I don't remember
the key off hand but can post it later if you don't find the issue from
looking at the report server log files.
--
-Daniel
This posting is provided "AS IS" with no warranties, and confers no rights.
"Mark" <mis@.ifcfabricsnospam.com> wrote in message
news:%23Tvx52GTFHA.2768@.tk2msftngp13.phx.gbl...
> Same problem here too. I get the first page & then the error on the second
> page. I also only get the first page when printing & the error at the end.
> I have checked my IE explorer settings & verified scripting is turned on.
> Anything else to check?
> "isamu" <isamu@.discussions.microsoft.com> wrote in message
> news:1ECA681E-E40B-4EB7-BB82-DE6609D44651@.microsoft.com...
>>I am getting the following error message when previewing or trying to just
>> print using the client side activeX printing control after installing sp2
>> release:
>> An error occured trying to render the report.
>> (0x800040005)
>> ? don't have the slightest clue what this could be. I have deleted
>> the
>> activex installation from the downloaded files directory and tried
>> reinstalling to no avail. I am running windows server 2003 standard
>> edition.
>|||Here is the log file:
Exporting works without a problem.
Regards,
Mark
aspnet_wp!library!8a0!04/29/2005-08:13:14:: i INFO: Call to GetPermissions:/
aspnet_wp!library!8a0!04/29/2005-08:13:14:: i INFO: Call to
GetSystemPermissions
aspnet_wp!library!b40!04/29/2005-08:13:18:: i INFO: Call to
GetPermissions:/Axapta - Accounting Reports
aspnet_wp!library!b40!04/29/2005-08:13:18:: i INFO: Call to
GetSystemPermissions
aspnet_wp!library!a04!04/29/2005-08:13:24:: i INFO: Call to
GetPermissions:/Axapta - Accounting Reports/AR Analysis
aspnet_wp!library!a04!04/29/2005-08:13:24:: i INFO: Call to
GetSystemPermissions
aspnet_wp!library!a04!04/29/2005-08:13:25:: i INFO: Call to RenderFirst(
'/Axapta - Accounting Reports/AR Analysis' )
aspnet_wp!library!a04!04/29/2005-08:13:27:: i INFO: Initializing
EnableExecutionLogging to 'True' as specified in Server system properties.
aspnet_wp!webserver!a04!04/29/2005-08:13:27:: i INFO: Processed report.
Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
aspnet_wp!library!a04!04/29/2005-08:13:27:: i INFO: Call to RenderNext(
'/Axapta - Accounting Reports/AR Analysis' )
aspnet_wp!chunks!a04!04/29/2005-08:13:28:: i INFO: ###
GetReportChunk('RenderingInfo_HTML4.0', 2), chunk was not found!
this=5b89a6f0-9173-4be2-9c0f-5fe286779471
aspnet_wp!cache!a04!04/29/2005-08:13:29:: i INFO: Session live: /Axapta -
Accounting Reports/AR Analysis
aspnet_wp!webserver!a04!04/29/2005-08:13:29:: i INFO: Processed report.
Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
aspnet_wp!webserver!a04!04/29/2005-08:13:29:: i INFO: Processed report.
Report='/Axapta - Accounting Reports/AR Analysis',
Stream='e8af5b9a-e473-49d3-9762-6e0036371c3b'
aspnet_wp!library!9f4!04/29/2005-08:13:33:: i INFO: Call to RenderFirst(
'/Axapta - Accounting Reports/AR Analysis' )
aspnet_wp!library!9f4!04/29/2005-08:13:35:: i INFO: Initializing
EnableExecutionLogging to 'True' as specified in Server system properties.
aspnet_wp!webserver!a04!04/29/2005-08:13:35:: i INFO: Processed report.
Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
aspnet_wp!library!ae0!04/29/2005-08:13:35:: i INFO: Call to RenderNext(
'/Axapta - Accounting Reports/AR Analysis' )
aspnet_wp!cache!ae0!04/29/2005-08:13:35:: i INFO: Item not cacheable: -
PersistStreams /Axapta - Accounting Reports/AR Analysis
aspnet_wp!chunks!ae0!04/29/2005-08:13:35:: i INFO: ###
GetReportChunk('RenderingInfo_IMAGE', 2), chunk was not found!
this=c67abfe3-6c6e-4867-97aa-9acf54f33413
aspnet_wp!webserver!a04!04/29/2005-08:13:36:: i INFO: Processed report.
Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
aspnet_wp!library!a04!04/29/2005-08:13:37:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.StreamNotFoundException:
The stream cannot be found. The stream identifier that is provided to an
operation cannot be located in the report server database., ;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.StreamNotFoundException:
The stream cannot be found. The stream identifier that is provided to an
operation cannot be located in the report server database.
aspnet_wp!webserver!a04!04/29/2005-08:13:37:: e ERROR: Reporting Services
error
Microsoft.ReportingServices.Diagnostics.Utilities.StreamNotFoundException:
The stream cannot be found. The stream identifier that is provided to an
operation cannot be located in the report server database.
aspnet_wp!cache!ae0!04/29/2005-08:13:39:: i INFO: Session live: /Axapta -
Accounting Reports/AR Analysis
aspnet_wp!library!8a0!04/29/2005-08:13:53:: i INFO: Call to RenderNext(
'/Axapta - Accounting Reports/AR Analysis' )
aspnet_wp!chunks!8a0!04/29/2005-08:13:54:: i INFO: ###
GetReportChunk('RenderingInfo_PDF', 2), chunk was not found!
this=5b89a6f0-9173-4be2-9c0f-5fe286779471
aspnet_wp!cache!8a0!04/29/2005-08:13:56:: i INFO: Session live: /Axapta -
Accounting Reports/AR Analysis
aspnet_wp!webserver!8a0!04/29/2005-08:13:56:: i INFO: Processed report.
Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
"Daniel Reib (MSFT)" <danreib@.online.microsoft.com> wrote in message
news:uDEZXvHTFHA.3544@.TK2MSFTNGP10.phx.gbl...
> This is generally an issue with rendering the report. The
> ReportServer<timestamp>.log file should have some information about the
> failure.
> If that doesn't help there is a way to turn on logging for the print
> control. It is a registry setting on the client machine. I don't
> remember the key off hand but can post it later if you don't find the
> issue from looking at the report server log files.
> --
> -Daniel
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>
> "Mark" <mis@.ifcfabricsnospam.com> wrote in message
> news:%23Tvx52GTFHA.2768@.tk2msftngp13.phx.gbl...
>> Same problem here too. I get the first page & then the error on the
>> second
>> page. I also only get the first page when printing & the error at the
>> end.
>> I have checked my IE explorer settings & verified scripting is turned on.
>> Anything else to check?
>> "isamu" <isamu@.discussions.microsoft.com> wrote in message
>> news:1ECA681E-E40B-4EB7-BB82-DE6609D44651@.microsoft.com...
>>I am getting the following error message when previewing or trying to
>>just
>> print using the client side activeX printing control after installing
>> sp2
>> release:
>> An error occured trying to render the report.
>> (0x800040005)
>> ? don't have the slightest clue what this could be. I have deleted
>> the
>> activex installation from the downloaded files directory and tried
>> reinstalling to no avail. I am running windows server 2003 standard
>> edition.
>>
>|||I'm getting the same error. Tried to uninstall /reinstall everything, doesn't
help.
Waiting for answer from MSFT. Thanks.
Lianghong
"isamu" wrote:
> good to hear i'm not the only one, i feel your pain.
> bump.
> "Magnus" wrote:
> > I have the same problem, does anyone have any ideas?
> >
> > /Magnus
> >
> >
> > "isamu" wrote:
> >
> > > I am getting the following error message when previewing or trying to just
> > > print using the client side activeX printing control after installing sp2
> > > release:
> > >
> > > An error occured trying to render the report.
> > > (0x800040005)
> > >
> > > ? don't have the slightest clue what this could be. I have deleted the
> > > activex installation from the downloaded files directory and tried
> > > reinstalling to no avail. I am running windows server 2003 standard edition.|||I saw this same error number for the printing control. Note the following:
1.This solution is for script in a web page. I do not think the control is
designed for using from a winform
2. The control needs to have been installed on the client. Your web page
needs to install this or you need to install it some other way. This is an
IIS thing. I am not doing it because I am using Report Manager. So, if you
use Report Manager and print once then it is installed on the client and the
below will work.
3. Look in readme.sp2Readme_EN.htm for information on using the control
4. Remember that Parameters are case sensitive.
&
ATL 7.0 test page for object RSClientPrint
function Print()
{
RSClientPrint.Print('http://yourservernamehere/reportserver',
'/DirectoryNameHere/ReportnameHere&ParameterNameHere=ParameterValueHere',
'ReportNameHere');
}
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Lianghong" <Lianghong@.discussions.microsoft.com> wrote in message
news:A2069513-3ED0-400F-BDBC-24C6C8EAAD1E@.microsoft.com...
> I'm getting the same error. Tried to uninstall /reinstall everything,
doesn't
> help.
> Waiting for answer from MSFT. Thanks.
> Lianghong
> "isamu" wrote:
> > good to hear i'm not the only one, i feel your pain.
> >
> > bump.
> >
> > "Magnus" wrote:
> >
> > > I have the same problem, does anyone have any ideas?
> > >
> > > /Magnus
> > >
> > >
> > > "isamu" wrote:
> > >
> > > > I am getting the following error message when previewing or trying
to just
> > > > print using the client side activeX printing control after
installing sp2
> > > > release:
> > > >
> > > > An error occured trying to render the report.
> > > > (0x800040005)
> > > >
> > > > ? don't have the slightest clue what this could be. I have
deleted the
> > > > activex installation from the downloaded files directory and tried
> > > > reinstalling to no avail. I am running windows server 2003 standard
edition.|||I solved my problem, I had a hidden list that I removed, after that the
report Worked.
/Magnus
"Mark" wrote:
> Here is the log file:
> Exporting works without a problem.
> Regards,
> Mark
> aspnet_wp!library!8a0!04/29/2005-08:13:14:: i INFO: Call to GetPermissions:/
> aspnet_wp!library!8a0!04/29/2005-08:13:14:: i INFO: Call to
> GetSystemPermissions
> aspnet_wp!library!b40!04/29/2005-08:13:18:: i INFO: Call to
> GetPermissions:/Axapta - Accounting Reports
> aspnet_wp!library!b40!04/29/2005-08:13:18:: i INFO: Call to
> GetSystemPermissions
> aspnet_wp!library!a04!04/29/2005-08:13:24:: i INFO: Call to
> GetPermissions:/Axapta - Accounting Reports/AR Analysis
> aspnet_wp!library!a04!04/29/2005-08:13:24:: i INFO: Call to
> GetSystemPermissions
> aspnet_wp!library!a04!04/29/2005-08:13:25:: i INFO: Call to RenderFirst(
> '/Axapta - Accounting Reports/AR Analysis' )
> aspnet_wp!library!a04!04/29/2005-08:13:27:: i INFO: Initializing
> EnableExecutionLogging to 'True' as specified in Server system properties.
> aspnet_wp!webserver!a04!04/29/2005-08:13:27:: i INFO: Processed report.
> Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
> aspnet_wp!library!a04!04/29/2005-08:13:27:: i INFO: Call to RenderNext(
> '/Axapta - Accounting Reports/AR Analysis' )
> aspnet_wp!chunks!a04!04/29/2005-08:13:28:: i INFO: ###
> GetReportChunk('RenderingInfo_HTML4.0', 2), chunk was not found!
> this=5b89a6f0-9173-4be2-9c0f-5fe286779471
> aspnet_wp!cache!a04!04/29/2005-08:13:29:: i INFO: Session live: /Axapta -
> Accounting Reports/AR Analysis
> aspnet_wp!webserver!a04!04/29/2005-08:13:29:: i INFO: Processed report.
> Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
> aspnet_wp!webserver!a04!04/29/2005-08:13:29:: i INFO: Processed report.
> Report='/Axapta - Accounting Reports/AR Analysis',
> Stream='e8af5b9a-e473-49d3-9762-6e0036371c3b'
> aspnet_wp!library!9f4!04/29/2005-08:13:33:: i INFO: Call to RenderFirst(
> '/Axapta - Accounting Reports/AR Analysis' )
> aspnet_wp!library!9f4!04/29/2005-08:13:35:: i INFO: Initializing
> EnableExecutionLogging to 'True' as specified in Server system properties.
> aspnet_wp!webserver!a04!04/29/2005-08:13:35:: i INFO: Processed report.
> Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
> aspnet_wp!library!ae0!04/29/2005-08:13:35:: i INFO: Call to RenderNext(
> '/Axapta - Accounting Reports/AR Analysis' )
> aspnet_wp!cache!ae0!04/29/2005-08:13:35:: i INFO: Item not cacheable: -
> PersistStreams /Axapta - Accounting Reports/AR Analysis
> aspnet_wp!chunks!ae0!04/29/2005-08:13:35:: i INFO: ###
> GetReportChunk('RenderingInfo_IMAGE', 2), chunk was not found!
> this=c67abfe3-6c6e-4867-97aa-9acf54f33413
> aspnet_wp!webserver!a04!04/29/2005-08:13:36:: i INFO: Processed report.
> Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
> aspnet_wp!library!a04!04/29/2005-08:13:37:: e ERROR: Throwing
> Microsoft.ReportingServices.Diagnostics.Utilities.StreamNotFoundException:
> The stream cannot be found. The stream identifier that is provided to an
> operation cannot be located in the report server database., ;
> Info:
> Microsoft.ReportingServices.Diagnostics.Utilities.StreamNotFoundException:
> The stream cannot be found. The stream identifier that is provided to an
> operation cannot be located in the report server database.
> aspnet_wp!webserver!a04!04/29/2005-08:13:37:: e ERROR: Reporting Services
> error
> Microsoft.ReportingServices.Diagnostics.Utilities.StreamNotFoundException:
> The stream cannot be found. The stream identifier that is provided to an
> operation cannot be located in the report server database.
> aspnet_wp!cache!ae0!04/29/2005-08:13:39:: i INFO: Session live: /Axapta -
> Accounting Reports/AR Analysis
> aspnet_wp!library!8a0!04/29/2005-08:13:53:: i INFO: Call to RenderNext(
> '/Axapta - Accounting Reports/AR Analysis' )
> aspnet_wp!chunks!8a0!04/29/2005-08:13:54:: i INFO: ###
> GetReportChunk('RenderingInfo_PDF', 2), chunk was not found!
> this=5b89a6f0-9173-4be2-9c0f-5fe286779471
> aspnet_wp!cache!8a0!04/29/2005-08:13:56:: i INFO: Session live: /Axapta -
> Accounting Reports/AR Analysis
> aspnet_wp!webserver!8a0!04/29/2005-08:13:56:: i INFO: Processed report.
> Report='/Axapta - Accounting Reports/AR Analysis', Stream=''
> "Daniel Reib (MSFT)" <danreib@.online.microsoft.com> wrote in message
> news:uDEZXvHTFHA.3544@.TK2MSFTNGP10.phx.gbl...
> > This is generally an issue with rendering the report. The
> > ReportServer<timestamp>.log file should have some information about the
> > failure.
> >
> > If that doesn't help there is a way to turn on logging for the print
> > control. It is a registry setting on the client machine. I don't
> > remember the key off hand but can post it later if you don't find the
> > issue from looking at the report server log files.
> >
> > --
> > -Daniel
> > This posting is provided "AS IS" with no warranties, and confers no
> > rights.
> >
> >
> > "Mark" <mis@.ifcfabricsnospam.com> wrote in message
> > news:%23Tvx52GTFHA.2768@.tk2msftngp13.phx.gbl...
> >> Same problem here too. I get the first page & then the error on the
> >> second
> >> page. I also only get the first page when printing & the error at the
> >> end.
> >>
> >> I have checked my IE explorer settings & verified scripting is turned on.
> >>
> >> Anything else to check?
> >>
> >> "isamu" <isamu@.discussions.microsoft.com> wrote in message
> >> news:1ECA681E-E40B-4EB7-BB82-DE6609D44651@.microsoft.com...
> >>I am getting the following error message when previewing or trying to
> >>just
> >> print using the client side activeX printing control after installing
> >> sp2
> >> release:
> >>
> >> An error occured trying to render the report.
> >> (0x800040005)
> >>
> >> ? don't have the slightest clue what this could be. I have deleted
> >> the
> >> activex installation from the downloaded files directory and tried
> >> reinstalling to no avail. I am running windows server 2003 standard
> >> edition.
> >>
> >>
> >
> >
>
>|||Thanks for your quick reply.
I got this error when I trying to print/preview report from the
ReportManager. I've just installed SP2 to my other machine (second) and the
print/preview button works fine for it. The difference for these two machines
is that the first machine installed SP2 beta before. But I uninstalled RS on
both machines and reinstalled both. Another thing I've noticed is that after
the installation, the RSExecRole was not checked for the ASPNET account on
the first machine but it is checked on the second machine.
Anything else I need to check?
Thanks,
Lianghong
"Bruce L-C [MVP]" wrote:
> I saw this same error number for the printing control. Note the following:
> 1.This solution is for script in a web page. I do not think the control is
> designed for using from a winform
> 2. The control needs to have been installed on the client. Your web page
> needs to install this or you need to install it some other way. This is an
> IIS thing. I am not doing it because I am using Report Manager. So, if you
> use Report Manager and print once then it is installed on the client and the
> below will work.
> 3. Look in readme.sp2Readme_EN.htm for information on using the control
> 4. Remember that Parameters are case sensitive.
>
> &
>
> ATL 7.0 test page for object RSClientPrint
>
>
>
> CLASSID="CLSID:FA91DF8D-53AB-455D-AB20-F2F023E498D3">
>
> function Print()
> {
> RSClientPrint.Print('http://yourservernamehere/reportserver',
> '/DirectoryNameHere/ReportnameHere&ParameterNameHere=ParameterValueHere',
> 'ReportNameHere');
> }
>
>
>
>
>
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
> "Lianghong" <Lianghong@.discussions.microsoft.com> wrote in message
> news:A2069513-3ED0-400F-BDBC-24C6C8EAAD1E@.microsoft.com...
> > I'm getting the same error. Tried to uninstall /reinstall everything,
> doesn't
> > help.
> > Waiting for answer from MSFT. Thanks.
> >
> > Lianghong
> >
> > "isamu" wrote:
> >
> > > good to hear i'm not the only one, i feel your pain.
> > >
> > > bump.
> > >
> > > "Magnus" wrote:
> > >
> > > > I have the same problem, does anyone have any ideas?
> > > >
> > > > /Magnus
> > > >
> > > >
> > > > "isamu" wrote:
> > > >
> > > > > I am getting the following error message when previewing or trying
> to just
> > > > > print using the client side activeX printing control after
> installing sp2
> > > > > release:
> > > > >
> > > > > An error occured trying to render the report.
> > > > > (0x800040005)
> > > > >
> > > > > ? don't have the slightest clue what this could be. I have
> deleted the
> > > > > activex installation from the downloaded files directory and tried
> > > > > reinstalling to no avail. I am running windows server 2003 standard
> edition.
>
>|||I checked the security on the database & the RSexec role is checked.
It still does not print or print preview past the first page.
I am using standard report manager with the sample reports.
The report manager is set to an Intranet site with the LOW security setting
in IE.
Another odd item is the page counter on the preview will keep going up in
pages even if the report on has 1 page.
Anything else to check?
Regards,
MB
"Lianghong" <Lianghong@.discussions.microsoft.com> wrote in message
news:2AA1C4EF-D7A0-4796-A86A-07E5B65C5A14@.microsoft.com...
> Thanks for your quick reply.
> I got this error when I trying to print/preview report from the
> ReportManager. I've just installed SP2 to my other machine (second) and
> the
> print/preview button works fine for it. The difference for these two
> machines
> is that the first machine installed SP2 beta before. But I uninstalled RS
> on
> both machines and reinstalled both. Another thing I've noticed is that
> after
> the installation, the RSExecRole was not checked for the ASPNET account on
> the first machine but it is checked on the second machine.
> Anything else I need to check?
> Thanks,
> Lianghong
> "Bruce L-C [MVP]" wrote:
>> I saw this same error number for the printing control. Note the
>> following:
>> 1.This solution is for script in a web page. I do not think the control
>> is
>> designed for using from a winform
>> 2. The control needs to have been installed on the client. Your web page
>> needs to install this or you need to install it some other way. This is
>> an
>> IIS thing. I am not doing it because I am using Report Manager. So, if
>> you
>> use Report Manager and print once then it is installed on the client and
>> the
>> below will work.
>> 3. Look in readme.sp2Readme_EN.htm for information on using the control
>> 4. Remember that Parameters are case sensitive.
>>
>> &
>>
>> ATL 7.0 test page for object RSClientPrint
>>
>>
>>
>> > CLASSID="CLSID:FA91DF8D-53AB-455D-AB20-F2F023E498D3">
>>
>> function Print()
>> {
>> RSClientPrint.Print('http://yourservernamehere/reportserver',
>> '/DirectoryNameHere/ReportnameHere&ParameterNameHere=ParameterValueHere',
>> 'ReportNameHere');
>> }
>>
>>
>>
>>
>>
>>
>> --
>> Bruce Loehle-Conger
>> MVP SQL Server Reporting Services
>> "Lianghong" <Lianghong@.discussions.microsoft.com> wrote in message
>> news:A2069513-3ED0-400F-BDBC-24C6C8EAAD1E@.microsoft.com...
>> > I'm getting the same error. Tried to uninstall /reinstall everything,
>> doesn't
>> > help.
>> > Waiting for answer from MSFT. Thanks.
>> >
>> > Lianghong
>> >
>> > "isamu" wrote:
>> >
>> > > good to hear i'm not the only one, i feel your pain.
>> > >
>> > > bump.
>> > >
>> > > "Magnus" wrote:
>> > >
>> > > > I have the same problem, does anyone have any ideas?
>> > > >
>> > > > /Magnus
>> > > >
>> > > >
>> > > > "isamu" wrote:
>> > > >
>> > > > > I am getting the following error message when previewing or
>> > > > > trying
>> to just
>> > > > > print using the client side activeX printing control after
>> installing sp2
>> > > > > release:
>> > > > >
>> > > > > An error occured trying to render the report.
>> > > > > (0x800040005)
>> > > > >
>> > > > > ? don't have the slightest clue what this could be. I have
>> deleted the
>> > > > > activex installation from the downloaded files directory and
>> > > > > tried
>> > > > > reinstalling to no avail. I am running windows server 2003
>> > > > > standard
>> edition.
>>|||Bruce,
Why are not you answering the question. I am waiting for almost 1 year now. i will talk to Bill Gates about it
From http://www.developmentnow.com/g/115_2005_4_0_0_510966/error-occured-trying-to-render-the-report.ht
Posted via DevelopmentNow.com Group
http://www.developmentnow.com