nhcloud
nhcloud

Reputation: 51

Is it possible to deploy IIS based application into service fabric?

I have an ASP.NET MVC app, heavily uses System.Web, Is it possible to deploy in Service Fabric?

Upvotes: 2

Views: 2440

Answers (2)

LoekD
LoekD

Reputation: 11470

Yes, you can do that by using containers. Here's a blog post about how to do that. Create your cluster using Windows Server 2016 nodes, with the Containers feature enabled.

(e.g. in Azure, use the '2016-Datacenter-with-Containers' sku.)

Upvotes: 3

Naresh Podishetty
Naresh Podishetty

Reputation: 797

Yes, you can.

If you just want your application to be hosted on SF, host it as a Guest Executable but with this approach you will miss native SF Features.

You can also Create MVC app native to SF Cluster with SDK provided.

Upvotes: -1

Related Questions