Hello Folks
We have an IIS web app that uses EO.Pdf (16.1.68.0) (.NET -- MVC etc). We are having problems with defining what kind of permissions a User needs to have to execute EO.PDF. Access to the Web site is done using Windows Authentication and impersonation. Users with high level access (admins) can run the app w/o problem. Regular users receive error (Child process not ready. nWaitResult = 1). Our question is:
Can you provide us with a potential list of files/resources that EO.Pdf uses when running in IIS so we can tweak access for our regular users. We tried using:
<trust level="High" />, <trust level="Full" /> with no luck
EO.PDF was working great, the issue came up after we upgraded EO.PDF from a older version to a newer version. This is a hosted environment an windows access is carefully monitored. Any suggestions will be greatly appreciated. Thanks in Advanced
Code snipet on how we use EO.PDF:
string result = RenderFullViewToString("Index", "_PrintLayout", visitnote);
try
{
using (MemoryStream ms = new MemoryStream())
{
pdf = HtmlToPdf.ConvertHtml(result, ms, options);
//overwrite the exisiting Last page footer if visit status is complete
if (status.ToString() == @Resources.Properties.Resources.Complete)
{
int lastPage = pdf.PdfDocument.Pages.Count;
options = BuildOptionsLastPage(constructorParms, CtnDocSys, AdmSys, status, visitnote, lastPage);
HtmlToPdf.ConvertHtml("", pdf.PdfDocument.Pages[pdf.PdfDocument.Pages.Count - 1], options);
}
}
}