user1339913
user1339913

Reputation: 1027

Web Service in Azure

I am trying to recreate a web service in Azure. The web service needs to get data from an Azure database that needs to be exposed to SharePoint online.

The only options when I get when creating a web service in the azure Portal are as follows

Do I need to create a Function app instead?. Is a Function app equivalent to an On premise Web service.

Upvotes: 2

Views: 92

Answers (1)

Martin Brandl
Martin Brandl

Reputation: 59001

It depends on what kind of web service you want to host in Azure. E. g. if you have a dotnet / dotnet Core REST API, you probably want to create an API App (just search for API App).

Upvotes: 1

Related Questions