08-22-2022, 06:53 AM
(This post was last modified: 08-22-2022, 06:57 AM by Alexandre Machado.)
Due to the name of the call where the problem happens:
StarDocs.Auth.loginApp;
I'm almost 100% sure that some permission is missing. Or... this call may require COM. Does it?
There is no difference between an ISAPI application and any other application, other than the ISAPI is a DLL that runs in the context of another process (the executable that loads the ISAPI dll is named w3wp.exe, which is basically the core of the IIS "engine"). Whatever runs in one application and doesn't run in an ISAPI process can be translated as "it runs as myapp.exe, with IAMTheUser but doesn't run as w3wp.exe SystemIsTheUser.
See?
StarDocs.Auth.loginApp;
I'm almost 100% sure that some permission is missing. Or... this call may require COM. Does it?
There is no difference between an ISAPI application and any other application, other than the ISAPI is a DLL that runs in the context of another process (the executable that loads the ISAPI dll is named w3wp.exe, which is basically the core of the IIS "engine"). Whatever runs in one application and doesn't run in an ISAPI process can be translated as "it runs as myapp.exe, with IAMTheUser but doesn't run as w3wp.exe SystemIsTheUser.
See?

