I created Web Api and MVC combined for single page web app. I want to call web api and render mvc controller to create pdf from view using Rotativa api. Problem is when i access
Try by replacing your GetRequestionPdf with below one:
public HttpResponse GetRequistionPdf(modelClass oModel)
{
HttpResponse response = HttpContext.Current.Response;
ReportController _Report = new ReportController();
response.Clear()
response.ClearContent()
response.ClearHeaders()
response.Buffer = True
response.ContentType = "application/pdf"
response.AddHeader("Content-Disposition", "attachment;filename=xyz.pdf")
response.BinaryWrite(_Report.GetPdfBytesFormView(oModel));
response.End()
return response;
}