Hello,
I have a custom webservice which returns a pdf based on the provided parameters. To display this in radzen I have used the SSRS Report Viewer use proxy option to customize the URL. PDF is displayed but all the pages are blank.
partial void OnReportRequest(ref HttpRequestMessage requestMessage)
{
requestMessage.RequestUri = new Uri("http://services.bankwise.net/rptservice/getreport.asmx/LoadRPT?strClientID=11&strReportFile=rptCustomerID.rpt&strParameters=0");
}
The output is
All the pages are blank. If I paste the above URL in browser pdf shows contents.
Is there a better way? Kindly advise