Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the alternative to Azure Cloud Service (Classic)? [closed]

Considering Azure Cloud Services are considered 'classic' and MS is steering towards using the Resource Manager.

What is the recommended path for hosting a WCF webservice? I used to do this with a Azure Cloud Service so I didn't have to manage a Virtual Machine, but I can't find the obvious successor to Cloud Services.

like image 599
user2713516 Avatar asked Feb 10 '16 10:02

user2713516


1 Answers

At this moment, there's no alternative considering the PaaS model. It's possible to use App Service, but the limitations would be a downer.

Cloud Services are far from being deprecated and the support is available on the new portal, so it's safe to assume you won't have any problems using it in the medium term.

Alternatively, you could use Virtual Machine extensions to easy deployment and configuration. See below for details:

https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-extensions-features/

Update:

Azure Service Fabric is now the recommended platform to replace Cloud Services. Overall architecture remains the same and can be migrated without much effort.

https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-cloud-services-migration-differences

like image 103
Bruno Faria Avatar answered Sep 30 '22 15:09

Bruno Faria