Closed jchannon closed 9 years ago
:-1: Hitting this too.
This looks like a bug related to OWIN
based Helios
. @GrabYourPitchforks is there a better place where OWIN
based Helios
bugs can go?
This issue is now resolved in the Katana-based version pending the next release.
When using Helios with OWIN, any middleware that does any enumeration/LINQ on the OWIN environment eg/
env.First()
results in an exception with the messageThis API can only be called if the request is being served over HTTPS.
This can be got around by accessing items via the index/specific key and/or using
ContainsKey
but does seem a bit odd that you get a SSL message when trying to do enumeration.It also means I can't log out all the items in the OWIN dictionary:
UPDATE : I'm referring to this
<package id="Microsoft.Owin.Host.IIS" version="1.0.0-alpha1" targetFramework="net45" />