For File NTFS Permissions, I gave FULL ACCESS to
{MACHINE_NAME}/IUSR_MACHINENAME for C:\Inetpub\wwwroot and C:\Program
Files\Aspose\Aspose.Words\Bin
In IIS, for the default website I also gave FULL ACCESS to {MACHINE_NAME}/IUSR_MACHINENAME where test.asp is located.
But now I get a HTTP 500 error, it can't even initiate the webpage.
If I comment out the license part:
<%
response.write "test"
'---License file
'Dim license
'Set license = Server.CreateObject("Aspose.Words.License")
'license.SetLicense "Aspose.Words.lic.xml"
%>
the page loads and I can read "test"
If I don't use IIS/ASP and directly create a .vbs script and
CreateObject instead of Server.CreateObject, it works fine since it doesn't throw back an error at me. So the
problem is with IIS.
Am I supposed to edit the DefaultAppPool?