RSClientPrint Download

May 19, 2006

I have an asp.net application which is launched from our B2B site. The primary purpose of the application is to allow our external clients access to reports, along with the ability to export and print. The RS2005 report viewer component was used within the application to render the reports. The problem is when the our client users click on the print button on the report viewer's tool bar, many of them are receiving a window asking them if they want to install "SQL Server". In reality, the ActiveX viewer, RSClientPrint, is what is trying to install. Our technical support staff is being flooded with calls due to this pop up. The users are very confused and concerned about installing "SQL Server." In addition, some users do not have the ability to install the ActiveX viewer, so they are not going to be able to print. We've experienced this in the past with ActiveX for Crystal. Finally, some users receive no message or feedback when they click on the print button for several minutes. We've determined the ActiveX is being installed during this time. We've had users wait as long as 7 minutes for the Print Dialog to come up.

1. We would like to place a message along with the link on the page where the report is rendered. Is there a way for us to provide a link to a self extracting file containing RSClientPrint?

2. Also is there any way to get around the issue where the client user does not have the ability to install the ActiveX? I've seen references on the forum to using SMS, but this is not possible since the users are external?

3. Is there any setting we can turn on so the users don't think the application has gone "out to lunch" while the ActiveX viewer is installed?

Thanks

View 7 Replies


ADVERTISEMENT

RSClientPrint Problem

Mar 27, 2006

I'm trying to get client side printing to work in asp.net with reporting services 2005. I've got an aspx page to do printing as described here but when I try to render a report I get the following:

1. Print dialog box appears as expected

2. Press print

3. Dialog box appears saying "Print in progress"

4. After a few seconds another dialog box appears saying there was an error printing the report. Error code is 80004005.

I get the same error if I try to preview instad of print.

The (relevent) code is:

<object id="RSClientPrint" classid="CLSID:FA91DF8D-53AB-455D-AB20-F2F023E498D3" codebase="Bin/RSClientPrint.cab#Version=2005,90,1399,0"></object>

<script language="javascript" type="text/javascript">
function printIt() {
RSClientPrint.Print('http://localhost/ReportServer$SQL2005',
'/LMI Reports/GoodsIn&OrderID=1000'),
'Goodsin');
}
</script>

<body onload="printIt()">

Does anybody know what this error is and how I can get the control to work? Its not clear to me what the version on the object statement should be. This example uses the version string from the control but I've also tried 1.0 with the same result. Its also not clear if I should be using RSClientPrint.Authenticate or not. I've tried both true and false with the same result.

Many thanks

Ian

View 4 Replies View Related

Problems Using RSClientPrint

Sep 29, 2006



We are using VB.NET 2005 to develop a WinForms application that uses SQL Server 2005 Reporting Services to produce reports.
We want to print a large report programmatically without preview. RSClientPrint looked like a good solution but it produces an error when we try to use it.


Details...
I added Interop.RSClientPrintLib.dll Version 1.0.0.0 to my application and used the code sample I found at:
http://msdn2.microsoft.com/en-us/library/ms159195.aspx

The call to print looks like:
RSClientPrint.Print("http://ourServer/reportserver", strReportPathParameters, "Report_name")

This call generates an error message:
"An error occured during printing. (0x80004002)"

and throws an exception:
"Specified cast is not valid"



Any ideas appreciated.

View 5 Replies View Related

RSClientPrint In FireFox

Jun 26, 2007

Hi,

We are using the RSClientPrint component to print reports from our web application. When we use it from IE all works fine. But on using the FireFox the print method fails. I am using following code to print




Code Snippet

var oRSClientPrint = window.document.getElementById("RSClientPrint");
alert(oRSClientPrint);
if (typeof oRSClientPrint.Print == "undefined")
{
alert("Unable to load client print control.");
return;
}

In FireFox above code fails by raising error message "Unable to load client print control.". As per me FireFox is not able to use the Print method of object, Can you help me on how we can make it to work with FireFox.

Thanks and Regards,
Nav

View 1 Replies View Related

Problem When I Am Using RSClientPrint Active X

Jun 26, 2006

Hi ,

I m using rsclientscript in my application..i m using the following code in <script>

function Print()
{
RSClientPrint.MarginLeft = 12.7;
RSClientPrint.MarginTop = 12.7;
RSClientPrint.MarginRight = 12.7;
RSClientPrint.MarginBottom = 12.7;
RSClientPrint.Culture = 1033;
RSClientPrint.UICulture = 9;
RSClientPrint.Print('http://localhost/Reports/Pages/Report.aspx?ItemPath', '=%2fTestMonday%2fSrCorpLogo&CorporationId=2', 'Employee_Sales_Summary')
}
</script>

I m calling this script when user clicks the button in the webpage..

I m getting the dialog box properly..In that if i click preview button i m getting the following error

"An error occured trying to render the report. (0x80004005)"

Please help me out ..Very Urgent Issue..

Thanks in Advance..

Bhoopathi..

View 4 Replies View Related

RSClientPrint Parameter Issues

Mar 13, 2007

Hi All
We're having a technical issue integrating the print reports into the portal. I'm hoping maybe some of your guys can help. We're using the RSClientPrint component to print the reports. The problem appears to be a conflict between the & in the URL and the & in the parameter value's cube reference. Below is an HTML code snippet. The 1st button works fine for us, it prints everything and has no & in the parameter's cube references. The second button references specific User and Employee values and therefore has & in the cube reference and generates an error. We tried encoding the & as &amp; but it did not help. Thanks.

<html>
<body>


<OBJECT ID="RSClientPrint" CLASSID="CLSID:FA91DF8D-53AB-455D-AB20-F2F023E498D3"></OBJECT>

<script type="text/javascript">
function Print(ReportServer, ReportParameters, ReportTitle ) {
RSClientPrint.MarginLeft = .5 * 25.4;
RSClientPrint.MarginTop = .5 * 25.4;
RSClientPrint.MarginRight = .5 * 25.4;
RSClientPrint.MarginBottom = .5 * 25.4;
RSClientPrint.Culture = 1033;
RSClientPrint.UICulture = 1033;
RSClientPrint.PageWidth = 11 * 25.4;
RSClientPrint.PageHeight = 8.5 * 25.4;
RSClientPrint.Authenticate = false;
RSClientPrint.Print(ReportServer, ReportParameters, ReportTitle);
}

</script>


<button onclick="Print('http://localhost/reportserver', '/SA/SA.Report.6.Print&SessionSession=[Session].[Session].[All]&UserUser=[User].[User].[All]&TerritoryIdentifier=[Territory].[Identifier].[All]&EmployeeActiveFlag=[Employee].[Active Flag].[All]&EmployeeIdentifier=[Employee].[Identifier].[All]', 'SA.Report.6');"/>

<button onclick="Print('http://localhost/reportserver', '/SA/SA.Report.6.Print&SessionSession=[Session].[Session].&[1]&UserUser=[User].[User].&[1]&[1]&TerritoryIdentifier=[Territory].[Identifier].[All]&EmployeeActiveFlag=[Employee].[Active Flag].[All]&EmployeeIdentifier=[Employee].[Identifier].&[3356953]', 'SA.Report.6');"/>

</body>
</html>



Regards,

Nanda kumar R

View 3 Replies View Related

GP Fault When Using SSRS Print Icon RSClientPrint

Apr 8, 2008

I am getting a general protection fault when pressing the print icon in Reporting Services website.

Hi I found this article:


http://database.ittoolbox.com/groups/technical-functional/sql-server-l/reporting-services-2005-print-icon-causes-machine-to-reboot-1592477

but I can't figure ou how to "remove" the RSClientPrint Class add-on in IE 6.

P.S.
Why does something as simple as printing need to be an ActiveX control? There are all kinds of issues revolving around pushing this out using SMS for users without local admin permission.

View 4 Replies View Related

Rsclientprint Is Locking Up Systems Causing Reboot HELP

May 14, 2007

I am using SQL 2005 with reporting services, I have very basic reports, most users can print fine with the print icon in the toolbar, some users get the Blue screen and have to reboot. They have the rsclientprint.dll loaded in the browser, we have deleted it and reloaded, what do I do ?

View 1 Replies View Related

Report Toolbar Inactive - Suspect RsClientPrint ActiveX Problem

Mar 15, 2007

Hi,

I€™m hoping someone might be able to help me.

I have a Development Machine running Windows XP Professional SP2, with SQL Server 2005 including Reporting Services. I am developing an ASP.NET application using VS 2005, and am including Server Side Reports from SQL Server. Everything is working well, except when viewing the Reports.

The Reports when viewed from Reporting Services€™ Report Manager or from within the ASP.NET application only display the first page of the report, displaying the total number of pages as 0. As well, most of the functions on the report toolbar appear to be disabled. This occurs for any report viewed, even sample reports such as the Adventure Works Samples.

The problem only occurs when viewed from within Internet Explorer on the Development Machine. To overcome the problem, I have upgraded SQLServer to SP2, and removed and reinstalled Internet Explorer, but it made no difference. It appears to be related to the rsClientPrint ActiveX addon which should have been installed when the print icon was first selected. It appears not to have installed properly, but up to that point everything worked OK. Selecting the Print icon (or any other icon) since nothing happens. I€™m guessing here, but I suspect that the rsClientPrint addon needs to be reinstalled, but I don€™t know how to go about it. It is not listed within IE addon (where it is on other machines connecting to the Development Machine), nor is it listed within the €śC:WindowsDownloaded Program Files€?. But it is not being downloaded when the Print Icon is selected. I have checked all the Security settings for the environment to ensure that ActiveX programs are downloaded, and everything appears to be in order.

Would anyone be familiar with this problem or have any suggestions on how to go about resolving it? Any help would be appreciated as it is causing significant problems. Strange though, the reports appear fine when viewed from within the Server Manager.

View 1 Replies View Related

Download

Aug 19, 2004

Hi,

Where can i download sybase from.
Appreciate ur reply.

Thanks

View 1 Replies View Related

Where To Download?

Aug 18, 2006

Everything I read says RS for SQL 2000 is free. However, I cannot find anything except evaluation versions from MS. Is it no-longer free with SQL Server 2000?

Thanks,
Charles

View 2 Replies View Related

Not Able To Download SQL

Jul 7, 2007

Hi Friends,

I am trying to download SQL from http://msdn.microsoft.com/vstudio/express/sql/download/ site
downloading SQL Server 2005 Express Edition SP2
after downloading I can see three thing 1)Sql server configuration manager 2)SQL server error and Usage Report 3)Sql server surface area configuration......

Really dont know what I have downloaded My requirement is I want to download sql in order to practice sql commands.......

Please help me out........

Thanks in advance...........

View 8 Replies View Related

Download Pdf

Mar 13, 2007

I was wondering if there is any online user reference/manual fortransact sql (SQL Server) in PDF format? Download links? I know aboutonline help but I would like to have something locally.Thanks.

View 1 Replies View Related

Which Download Has The...

Sep 12, 2006

Which download has the application whose shortcut is placed with the Management Studio? I installed it once, but the shortcut couldn't find the target.

View 6 Replies View Related

Is It Possible To Download VS PPE?

Dec 28, 2007

This is a rather basic question as i've just started using the BI tools in SQL Server but have developed applications with SQL Server database engine before. I've upgraded from SQL Server express to SQL Server standard in my development environment but did not get the tools to upgrade... I therefore unstalled express and reinstalled but still didn't get BI Development Studio to install. Now when i try to install JUST BIDS, i'm told everything is installed and there nothing else to install...

How can i install BI Development Studio? I remember downloading an install specific to it but can't find that now. My SQL Server standard CD is not installing it either... what can i do?

Thanks!

View 19 Replies View Related

How Can I Download From From Database?

Jun 17, 2007

Hi. I'm trying to make a web application let people publish documents from the internet.
Now I've found a template source code let me upload file to SQL database (to an image field).
 
Here the problem is I can't find source code to download binary data from the database.
Could anyone  help me? (Or tell me where can I found the resources teach me how to do that.)

View 1 Replies View Related

Backup Download.

Jan 28, 2008

When i backup my database in msql , the server also backs up. How can i download it to my pc from the server ???
i am using SQL Server Management Studio Express

View 4 Replies View Related

Sql Driver - Download ???

Sep 17, 2001

Hi,
where can i download the actuall driver for microsoft sql server?
i can't find them !!!
thx
andy

View 1 Replies View Related

NPI Download Files From CMS

Jan 31, 2012

I have a zip file that is 418 MB in size that is downloadable from the CMS website [URL] .... at the bottom, where it says NPI Downloadable File. But, believe it or not, when it is downloaded, unlike the documentation I see everywhere that says it's about 2GB when unzipped, my computer consistently tells me it is an incomprehensible 6PB. I've never heard of anything like it.

See the screen print. I wouldn't have believed it if I hadn't seen it. I've deleted the zip file and have attempted to download it again and again, always with the same result. Am I the only one getting this abnormal output?

View 1 Replies View Related

Best Way To Download DBs To Laptop

Mar 27, 2007

What's a good way to download five SQL Server 2005 databases from production to my laptop for development work with Visual Studio?

Our application code is under source control, but to have a current development environment I must keep downloading these databases. Four databases are small, but one will need to be trimmed to about 10% of actual size to fit on my laptop's hard drive.

Looking at options in the Management Studio by right-clicking on each database, I see options to export the data, create a backup. Or, am I making this too hard and the easiest way would be to download some backups of the database created by the maintenance plan and use those to restore them on my laptop?

View 5 Replies View Related

SSIS DOWNLOAD???

Oct 7, 2007

Hi,

I was wondering if there was a free download for ssis? I downloaded the advanced toolkit for SQL and it doesn't have integrations services with it? Is there a separate download for this or does it have to be purchased?

thanks,

View 5 Replies View Related

OLE DB Providers Download!!!!

Apr 21, 2008

Hi,

I have Windows server 2003 SR2 and wich to install on it OLE DB Providers. I mainly have an application that needs OLE DB provider for Excel and Dbase to access read excel and dbase Files on disk. I have searched all over the web for a download link. I installed MDAC on the server and restarted bu still no luck. My ODBC applet in the control panel only shows the SQL native drivers.


PS: Windows is 64 bit. I believe this might be why. But what can I do in this situation?

please help

Thanks

View 5 Replies View Related

Driver Download

Feb 25, 2008

Please let me know if the user who is having the SQL server 2000 license can download the JDBC Driver that comes along with 2005

View 4 Replies View Related

SS2005 Re-download

Jun 19, 2006



I downloaded the DVD image to a PC and the DVD drive fails.

Now, when I try to download the executable for install instead, nothing downloads.

Is SQL SVR 2005 eval limited to one download?



View 3 Replies View Related

Download DTS Designer?

Jun 17, 2005

Does anyone know if Microsoft provides a download of DTS Designer that I can use with SQL Server 2005 Express? 

View 4 Replies View Related

??? Compact 3.5 SP1 Download ???

Jan 10, 2008

Hi everyone,

We are replicating SQL Server Compact and SQL Server 2008. My understanding is that SQL Server 2008 can only replicate with Compact 3.5 SP1, not Compact 3.5.

I have not been able to locate a download fromMicrosoft for SQL Compact 3.5 SP1. The download that is available is for Compact 3.5 (without the SP1).

Does anyone know where I can get the SP1 download?

Thanks

View 9 Replies View Related

Where Can I Download MS SQL 2005 Help Document?

Oct 6, 2006

Where can I download MS SQL help document? Thanks!

View 2 Replies View Related

How Download File From Database?

Oct 15, 2004

How can I download a file that is previously uploaded to database?
Of course its kind is Byte.

View 1 Replies View Related

How To Download A File From SQL Server In My Web APP

Nov 24, 2004

Hello people,

Do you know how can do for downloading a file stored in a database?. I'm using a table with a FILE field for storing the file.

I know i have to create a special aspx page for downloading, that receives parameters to locate the proper record in the table and then retrieve the file in memory to start downloading.

I have done this with file located at specific folders but not a database's field.

Another thing... the file may be big.

Dou you have any idea about retrieving from sql and sending the file back to the final user?

I really appreciate your support.

Larry.

View 1 Replies View Related

Possible To Download Enterprise Manager?

Dec 31, 2004

Does anyone know if it is possible to download Enterprise Manager?

Thanks

View 1 Replies View Related

DBMGR2K Download Site

Jun 23, 2005

Hello!

I've heard about a free tool for msde "dbmgr2k" can someone please help to point me to where can i download the software?

Thanks in advance!

View 2 Replies View Related

Download SQL Server Decryptor.

Jul 2, 2002

The application can decrypt stored procedure ,views ,trigger ,defined function. Download at http://www.qwerks.com/Product.asp?ProductID=4867

View 1 Replies View Related

Trial/Dev Download Of MS SQL 7 Server?

Apr 30, 2005

I am developing an application that needs to connect to a MS SQL 7 database.

Is there anywhere I can download a developer or trial version of MS SQL 7 for such a purpose?

I've looked everywhere and can't find anything online!

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved