There is ASMX, WCF, REST, and ADO.NET Data Services... I've used WCF and ASMX succesfully with Silverlight 2, but what about the others? What are the pros and cons of using each type of service with Silverlight 2?
|
|
|
|
|
|
|
You have multitude of options -
Number 3 is my personal choice. |
||
|
|
|
|
WCF is probably what you want, since it is a framework that includes http, soap, tcp, json, etc. |
||
|
|
|
|
Depending on your intent a few things you must also take into consideration:
If you want to do fast prototyping, I would recommend using ASMX services since they involve the least amount of effort. If you are doing something that involves a lot of database interaction, consider using ADO.NET Data Services and a RESTful approach. If you would like to add a lot of complexity, but benefit from more robust security and configuration, utilize WCF. |
||
|
|
