Hi!
With version 20.3.0.48 the following call works correct:
var pdfViewer = new ej.pdfviewer.PdfViewer({
documentPath: path,
serviceUrl: '/api/PdfViewer',
enableCustomStamp:true,
locale: "de-DE"
});
Controller:
public IActionResult Load([FromBody] Dictionary<string, string> jsonObject)
{
PdfRenderer pdfviewer = new PdfRenderer(_cache);
PdfRenderer.ReferencePath = Path.Combine(_hostingEnvironment.ContentRootPath,"Pdfium");
MemoryStream stream = new MemoryStream();
.......
If we upgrade to 22.1.34 -> .Load is called but jsonObject is null.
Do you have any hints for me?
Regards Bernhard