Unless
- You expect to get VERY heavy traffic on your service or each message to be processed might take a long time and the clients are OK to use async service calls
- You have particularly strict security concerns and need to use a gatekeeper pattern
I would use a web role for your service. This should give you very good and simple scalability - just by adding more role instances.
The pattern of offloading service processing to a background worker role via a queue is mainly for load levelling in very high traffic or computationally expensive services or to enforce very strict access control.
For security, certificates are a relatively complex, especially if you have to come up with a way of distributing them to the clients. On Azure, it might make more sense to use the Azure Access Control Service (ACS) this allows you to do federated security with various identity providers such as Live ID, Google, Yahoo! and Facebook. If your clients are in a Windows enterprise type environment, then they could federate with their on premise Active Directory. The best way really depends on your specific scenario. A good starting point for the ACS is
http://msdn.microsoft.com/en-us/library/windowsazure/gg429784.aspx
The details of how you use the ACS depends on the nature of your service. If it is a SOAP service (e.g. wsHttpBinding or basicHttpBinding in WCF) I would use WIF. This is very well supported and very simple to program. Again, there are lots of tutorials on how to do this. Google will be your friend. If you are making a REST service, it is a little bit more complicated to develop, but still very doable.
http://social.technet.microsoft.com/wiki/contents/articles/4067.aspx
As for serialising objects to send to WCF services, if you are using .Net on the client side, this is all handled for you by the WCF client stack. There are lots of tutorials, samples, books and training courses for this on the web. Try this one as a starter on Azure
http://msdn.microsoft.com/en-us/library/windowsazure/gg651130.aspx
The choice of SOAP or REST again depends on your scenario
- REST will give you wider support for different clients such as mobile devices etc.
- SOAP gives you more options for security and a few more sophisticated behaviours, but will limit your clients more than REST
REST is very popular these days, but it really depends on your needs. SOAP still fits for many use cases.
For more specific answers you would have to give more specific details of your service and your scenario. But if you are at the early stages and still have to make choices about how to proceed (this is what it sounds like), then these links should help get you started.