Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between WCF and the RIA Services Domain Service Class?

I'm just introducing myself to the basic differences between Silverlight 3 and it's predecessor. Looking at Domain Service Class within RIA services, the execution seems quite a bit simplified. Can someone explain the basic differences between this and Windows Communication Foundation?

Does the Domain Service Class employ WCF or some other services framework in the background, or is this new from the ground up?

like image 811
Feckmore Avatar asked Jun 12 '09 01:06

Feckmore


People also ask

What is WCF RIA Service?

WCF RIA Service is a higher-level framework and a new component of frameworks like . NET 4 and Silverlight 4 that eases the procedure of building a complex business application in Silverlight by offering client-side validation. RIA stands for Rich Internet Applications.

Can I uninstall WCF RIA Services?

You can uninstall WCF RIA Services V SP1 from your computer by using the Add/Remove Program feature in the Window's Control Panel. When you find the program WCF RIA Services V1. 0 SP1, click it, and then do one of the following: Windows Vista/7/8/10: Click Uninstall.


1 Answers

I recommend you read this blog article which mentions that:

Our thinking on the RIA Services work really grow out of the LINQ project a few years ago. LINQ integrates query semantics into the languages (C#, VB, etc) providing a common abstraction for working with data; whether that data is in memory CLR objects, XML, relational data, or anything else. With RIA Services we are extending this pattern by offering a prescriptive model for exposing your domain logic over LINQ. We think of domain logic as that part of your application that is very specific to your domain – that is the particular business problem you are solving.

So it is to 'domain logic' what LINQ is to data, whereas WCF is essentially just a service provider.

In traditional N-Tier development this means that:

...you should think of RIA services as a more perceptive layer on top of ADO.NET Data Services and WCF... We also expect to eventually provide full access to all the power and flexibility from the underlying WCF services such as highly optimized binary serialization.

Or you also have the option to use the new "RIA Services pattern" to:

...build ASP.NET applications easily while taking advantage of all the built in features of RIA Services such as data validation, authorization, etc. In the March preview, we are offering a asp:DomainDataSource control that enables very easy ASP.NET WebForms access to your domain logic. Building on top of that is a future version of ASP.NET Dynamic Data that makes it very easy to generate common, standard UI based on your domain logic.

This essential means that the RIA Services can either:

  • Sit on top of WCF (essentially wrapping the WCF services for the Client App to consume).
  • Replace the WCF layer with RIA Services using alternatice data source (eg. ADO.NET Entity Data Model/Entity Framework as per Building A Data-Driven Expense App with Silverlight 3)

It is also worth checking out Mix09: Building Amazing Business Applications with Silverlight 3 for another example.

As i'm writing this i've just discovered Microsoft's .NET RIA Services Overview which looks like it explains a lot of the rational behind RIA Services (and probably a bit clearer than some of the above :)

like image 126
mundeep Avatar answered Oct 17 '22 11:10

mundeep