vote up 0 vote down star
2

Is there an easy way to generate a PDF report from an RDL that's been uploaded to Report Manager and put that file somewhere on the server's disk? I already have a location on disk to put the file, I just need to know how to programmatically generate the PDF. This is for SQL Server 2005 Reporting Services. Code in either VB or C# is fine.

flag

68% accept rate

2 Answers

vote up 3 vote down check

This article will show you how you can generate PDF report from reporting service, without using report viewer. Only change you have to do is to write the result byte array into a file stream instead of sending it to response stream as shown in that example. The above mentioned example is using the web services provided by SQL reporting service to generate report.

link|flag
i'm working through this article. if it gets me what i need, i'll mark this as answered. thanks! – Jeremy Michael Cantrell Oct 7 '08 at 20:50
vote up 1 vote down

Do you have to do it programatically? Report Manager has this funcationality built in already. You just setup a new subscription for that report. Instead of setting the delivery as Email, change it to Windows File Share. You can also change the report format to PDF within those options.

link|flag
yes, it needs to be done programmatically. the code has to block until the report is done. – Jeremy Michael Cantrell Oct 7 '08 at 20:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.