I have a telerik report service (Telerik.Reporting.Service.ReportService) that is used by silverlight application. I want also use the same service for iPad version of the application.
The way we are going to implement:
Create a proxy service, that will send requests to ReportService. This proxy service will have 2 methods: RenderAndCache, GetPage. I want to get a page with html format and then just return it to iPad client. But the markup that we got from ReportService has a strange links for images.
Example:
<img alt="Chart" src="&StreamID=3nxve03monw" width="718px" height="600px" /></td>
I want to get the following link
[ApplicationRoot]/ReportService.svc/resources/getrenderstream?instanceID=smth&name=3nxve03monw".
I understand that it's possible just to replace it manually. But I'm interested if there is a way of getting such kind of links from the box.
The way we are going to implement:
Create a proxy service, that will send requests to ReportService. This proxy service will have 2 methods: RenderAndCache, GetPage. I want to get a page with html format and then just return it to iPad client. But the markup that we got from ReportService has a strange links for images.
Example:
<img alt="Chart" src="&StreamID=3nxve03monw" width="718px" height="600px" /></td>
I want to get the following link
[ApplicationRoot]/ReportService.svc/resources/getrenderstream?instanceID=smth&name=3nxve03monw".
I understand that it's possible just to replace it manually. But I'm interested if there is a way of getting such kind of links from the box.