Owin/Katana could be hosted either with IIS or self hosting. When hosting over IIS, what happens to the ASP.NET Request Life cycle? Will it still run as before? (BeginRequest, etc ...). What basically happens?
Asked
Active
Viewed 1,589 times
1 Answers
5
Yes, it's the same and the OWIN/Katana middleware can be interleaved at the same stanges in IIS as needed. Check the UseStageMarker API to let IIS know when you want the middleware to run:
Also, this goes into some details as well:
http://www.asp.net/aspnet/overview/owin-and-katana/owin-middleware-in-the-iis-integrated-pipeline

Brock Allen
- 7,385
- 19
- 24
-
Hi Brock, thanks for the answer. After asking my question here, I had already found the second link above you sent me. Regards – Bill Apr 10 '14 at 07:06