rdvojmoc / DinkToPdf

C# .NET Core wrapper for wkhtmltopdf library that uses Webkit engine to convert HTML pages to PDF.
MIT License
1.08k stars 409 forks source link

[NO ISSUE] "Library was NOT tested with IIS" -> It works ! #50

Open TomyCesaille opened 6 years ago

TomyCesaille commented 6 years ago

Hello, I noticed the "Library was NOT tested with IIS." in README.

For the record, the package works under IIS.

Regards,

lkolodziey commented 6 years ago

Yes, I did a test right now and works fine.

codingbadger commented 5 years ago

What did you do to get this working? I am not having any luck getting this running in IIS. I get the error Qt: Could not initialize OLE (error 80010106)

lkolodziey commented 5 years ago

@codingbadger, did you copied the libwkhtmltox.dll to the folder containing your solution dlls? I did that mistake (I didn´t copy it) and the same error appears to me.

codingbadger commented 5 years ago

Hi @lkolodziey yes I have done that. It is loading the dll correctly because if I put the 64bit version in, the app crashes with a Bad Image Exception.

lkolodziey commented 5 years ago

@codingbadger, try to put all related files like attached image and try again. capture Let´s testing :D Does not matter if you using windows put all files ...

codingbadger commented 5 years ago

Yep - I have all those files :)

lkolodziey commented 5 years ago

It is so strange. OK, Is your application running in IIS with "no managed code" (application pool) ? I your application 64bit configured in IIS (application pool) ?

codingbadger commented 5 years ago

Yes - App pool is running as "no managed code". The "enable 32 bit applications" is set to False

codingbadger commented 5 years ago

I finally got to the bottom of this, it turns out the the absolute url being used for images, css etc wasn't accessible from the webserver. Once this was fixed the PDF's were generated fine.

Thanks for your help @lkolodziey

lkolodziey commented 5 years ago

Basically broken links, good thing that solved. You are welcome.

lkolodziey commented 5 years ago

For all ... I created an example of use: https://github.com/lkolodziey/UsingDinkToPdf_Example

novidaws commented 5 years ago

Hello, @lkolodziey . Thank you for your sharing, I need your help, because libwkthmltox.dll is not running well in my IIS environment. I use libwkhtmltox.dll version 0.12.4 for .Net Core 2.0, and I published to IIS version 10.0.14393.0.

I got something error in my browser:

`An error occurred during the compilation of a resource required to process this request. Please review the following specific error details and modify your source code appropriately. C:\inetpub\wwwroot\prisma\Views\Home\Index.cshtml

Metadata file 'C:\inetpub\wwwroot\prisma\libwkhtmltox.dll' could not be opened -- PE image doesn't contain managed metadata. @{`

Could you share your knowledge about this? I really appreciate your help! Thanks!

rajputranjeet569 commented 4 years ago

Hi All,

Can i use DinkToPdf with dot net core 2.1?.

I have used it with Asp.net core. it's working on local IIS but not working on Live Server.

Error : Unable to load DLL 'C:\inetpub\wwwroot\myproject\api\bin\libwkhtmltox.dll' or one of its dependencies: The specified module could not be found. (Exception from HRESULT: 0x8007007E) Unable to load DLL 'C:\inetpub\wwwroot\myproject\api\bin\libwkhtmltox.dll' or one of its dependencies: The specified module could not be found. (Exception from HRESULT: 0x8007007E).

Please let me know ASAP.

Thanks & Regards, Ranjeet

casaulenbo commented 4 years ago

Yes you can. Performance of IIS is very bad. Imagine, at first server got 100 request concurrently, which every request will create 1 pdf file. If there is request 101th, it have to wait until 100 request finish.

raissahonorato commented 4 years ago

Hello, I'm from Brazil and I saw that this post is a little bit like my problem. my application returns the following result: "A#Could not load file or assembly 'DinkToPdf, Version=1.0.8.0, Culture=neutral, PublicKeyToken=null'" have you seen something like that? thanks for listening!

casaulenbo commented 4 years ago

Have you try this before? https://github.com/rdvojmoc/DinkToPdf/issues/5#issuecomment-321183899

arpitce27 commented 3 months ago

@codingbadger, did you copied the libwkhtmltox.dll to the folder containing your solution dlls? I did that mistake (I didn´t copy it) and the same error appears to me.

And as a part of problem I did installed below, and I tried removing and running application - it throw same error. after re installation it worked fine. https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170

This was the key for my .NET CORE 2.2 Project.

Thank you @lkolodziey