I'm trying to use Syncfusion to convert HTML to PDF on Windows Azure.
It is working fine on the development machine. However on Windows Azure it does not work with HTTPS protocol. It will only work with HTTP.
Syncfusion's troubleshooting website suggests the following solution:
Reason When OpenSSL package is not installed in the machine. Solution For converting HTTPS sites, it requires OPENSSL libraries to be installed in the machine. The OPENSSL library can be installed by downloading its setup from the below link,
OpenSSL
Instead, the required assemblies can added in the Windows system folder (for 64 bit machine, it should be place in
$SystemDrive\Windows\SysWOW64 and for 32 bit machine, it should be place in
$SystemDrive\Windows\System32),
libeay32.dll
libssl32.dll
ssleay32.dll
https://help.syncfusion.com/file-formats/pdf/convert-html-to-pdf/webkit#troubleshooting
Is it possible to implement this with App Services? If so how would I go about it?