Govind Malviya
Govind Malviya

Reputation: 13763

Can I host asp.net webform web application on services fabric?

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

Answers (1)

alltej
alltej

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

Related Questions