Scenario:
- AWS hosted EC2
- Machine running IIS directly.
- Default inetpub/wwwroot setup
- Installed self-signed certs to enable HTTPS.
- Open browser to localhost - OK.
- Open browser to https://localhost - Ok (but warning of unsecure SSL cert but works for test purposes and resolves request).
- Go back to default website settings and pick SSL settings.
- Change option to ACCEPT Client Certificates (default is ignore).
- Open browser to localhost - OK.
- Open browser to https://localhost - FAIL -
Internal Server Error with code 0x80070032
From this error, I found MS Error info:
Description of HRESULT ISAPI filter drive:\FilePath\ISAPI_FLT.dll tried to register for SF_NOTIFY_READ_RAW_DATA notification.
I need to authenticate users and provide secure ID card information, but why fail out-the-gate even with the default IIS and nothing I am doing special otherwise?
Will eventually be running C# MVC Razor pages / Kestrel, but cant even get this basic component going before putting in anything else.
