We have an ASP.NET Core 1.0 RC1 application running against dnx-clr-win-x86.1.0.0-rc1-update1 and hosted in IIS as separate web site. This one works fine.
Now we want to add a "child" application to this web application, so both are running on the same port, but the child application should be available in a sub-path /Child. The child application is a normal ASP.NET 4.5 Web API app.
This setup worked fine before ASP.NET 5, when the main application was also a ASP.NET 4.5 application. But it unfortunately fails with ASP.NET 5. When we try to access the child application in the browser, we get a:
HTTP Error 502.3 - Bad Gateway
There was a connection error while trying to route the request.
Module httpPlatformHandler
Notification ExecuteRequestHandler
Handler httpplatformhandler
Error Code 0x80070002
Has this to do with the new way of hosting ASP.NET 5 applications by using the httpPlatformHandler? As said: it works well for the main ASP.NET 5 application, just not for the child ASP.NET 4.5 application. HttpPlatformHandler 1.2 is installed.