I got a wcf service which I\'d like to run on azure, but I got several problems:
First: do I choose a web role or a worker role for running the wcf service?
there´s no right answer for every scenario. if your service is simple, and dont need to manage a lot of configurarions such as specific permissions and etc, the azure website may attend well.
If you host your WCF service in a Web role, you'll then have all the benefits of IIS (pooling, caching, logging, etc.). You can rely on the WCF Web Role template and simply add a WCF service (which manifests itself as an svc) - and with the new SDK 1.3, you should be able to host a WCF service alongside your website in the same role.
You can also new up a ServiceHost in a worker role. With the worker role, you'll have complete control, but you'll lose the benefits of IIS.
For WCF labs, start with the Azure Platform Training Kit. You'll see labs for:
You can even host your WCF service on Azure Websites instead of using Web role or worker role. See the details here.