How to use SSRS to retrieve HTML snippets with embedded images the easy way
Posted
by
Ram
on Stack Overflow
See other posts from Stack Overflow
or by Ram
Published on 2012-03-20T23:25:58Z
Indexed on
2012/03/20
23:29 UTC
Read the original article
Hit count: 168
reporting-services
|ssrs-2008
I have a web-app that retrieves reports from our SSRS server dynamically - we hit a URL and out pops some HTML4.0 which I stuff into a div for the user to view. I recently tried adding a report that has an embedded image (in the RDL itself) and the image doesn't make it through. What does make it through is an IMG SRC reference back to the SSRS box but we do not allow end users to hit the SSRS box directly... users query the web-app and the web-app interacts with the SSRS service. There is an option to render in MHTML (note that we typically use rs:command=RenderHTML with rs:format=HTML4.0) - the blob returned appears to be valid MIME but does not seem friendly for stuffing into a DIV... am I missing something obvious? My next step is to parse the MIME, swizzle the references and stuff the whole thing back into the page but I feel like this is the hardway. What is the easy way to retrieve HTML snippet reports out of SSRS with embedded images?
© Stack Overflow or respective owner