Create Web Api and publish on Azure App Service
Create Web API and publish to Azure App Service 1) Create File, open new project from VS 2017 and enter project name . 2 2) Select template " ASP.NET Web Application(.NET framework) and Azure API App. 3) click ok , system will generate applicaiton from vs 2017 as shown below. 4) Right on project solution and build and press F5 to test application from local. 5) you should be able to see screen with error message " HTTP Error 403.14 - Forbidden " , because in my application I don’t have any User interface . 6) To fix this issue i need to update URL with http://localhost:62170/api/values/1 , then you should be able to see below screen with values from Web api. 7) Right click on solution and "Publish " to Azure and select Exsting . ...