Hi Appeon,
I got the following http status code 404 error on https (not http) when I am running my app.
I went to https://docs.appeon.com/ps/troubleshooting_guide/Session_creation_failed.html and could not find anything related to that error.
I can start my web api no problem:
Here is my web config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="/API" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
<add name="aspNetCore2" path="/health-*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
<add name="aspNetCore3" path="/connect/token" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\API\ServerAPIs.exe" stdoutLogEnabled="false" stdoutLogFile=".\API\logs\stdout" hostingModel="inprocess" />
</system.webServer>
</location>
</configuration>
<!--ProjectGuid: 9545C5FF-D7E5-4099-B960-10FDF0999640-->
Pascal