Hi
We have an issue where by we have a html page which includes <img/> tags with the source set to a url.
we are using the following to convert the page into pdf.
Code: C#
EO.Pdf.HtmlToPdf.Options.MaxLoadWaitTime = 480000;
EO.Pdf.HtmlToPdf.Options.UserName = OrderPortalLogin;
EO.Pdf.HtmlToPdf.Options.Password = OrderPortalPassword;
EO.Pdf.HtmlToPdf.ConvertUrl(url, fs)
When the page appears in the pdf random images will be missing. This appears to be load related as if we render two pdf at the same time we are more likely to have missing images.
Are there any other timeouts we should be considering?
Are there any logs we should be looking at?
Thankyou.