Reputation: 9839
Does anyone know what the options are for hosting legacy .NET4+ WCF services in Azure? I have heard that App Services are not to be used, but I have trouble finding any sources.
Upvotes: 1
Views: 1745
Reputation: 806
The basic areas to consider when migrating an existing .NET application to Azure are:
https://learn.microsoft.com/en-us/dotnet/azure/migration/choose
To host a WCF service in Azure, you can check out the following tutorials.
Expose an on-premises WCF service to a web application in the cloud by using Azure Relay
Deploying an existing WCF service to Azure
Upvotes: 2
Reputation: 18387
You can host your WCF services in multiple ways
on IIS
as Windows Service
as Console App
For the windows Service / Console App, you can:
For the other options:
You can deploy on App Service or also on a VM with IIS installed.
More info:
https://aspdotnetcodehelp.wordpress.com/2017/11/13/hosting-wcf-in-azure-app-service/
Upvotes: 1