Reputation: 13763
I am researching about azure service fabric and found nothing about how to host asp.net webform web application on service fabric? My application is built on asp.net version 4 and it is a monolithic app not microdevices based. Is it possible to host on service fabric?
Upvotes: 1
Views: 429
Reputation: 7285
ASP.NET webforms uses the System.Web assembly which is coupled to IIS. Service fabric uses OWIN for self-hosting the ASP.NET web apps. Thus, it is not possible to host asp.net webforms inside service fabric.
Upvotes: 2