Zeeshan
Zeeshan

Reputation: 3014

Confusion regarding WCF at Azure

I have few WCF services, deployed at IIS, which are consumed by some android devices. I'm have to move all my databases and services to Azure. I googled to find out how to deploy WCF at Azure, and found a concept of WebRole and Azure Cloud Service project. See THIS SO POST

But at the same time, I just tried creating a new webapp in Azure and simply published my WCF services project there, and it worked fine. (I tested with client).

My Question is,

Upvotes: 0

Views: 44

Answers (1)

Thiago Custodio
Thiago Custodio

Reputation: 18387

Both (WebApp and Web role) will work for your scenario.

The main difference between this two way is that Web role allows you to connect to it through remote desktop.

You can keep using WebApp and configure Auto Scaling (based on CPU usage or at a specific time).

Upvotes: 1

Related Questions