views:

66

answers:

1

in this answer he said that i can use RIA services while creating my 3 tiers solution, how it can help me and how it can save me time, because when i checked it on msdn i found that RIA is something tied to silver light, while i am creating a normal asp.net website.

+2  A: 

Distringuish between RIA and RIA Services

In the broadest sensse RIA (generally Rich Internet Applications) are implemented in technologies such as Silverlight, Dojo etc, give a really ncie UI experience in the browser (tier 1)

They will usually need to get data from somewhere, so you write service on a server somewhere. (tier 2). That in turn may actually go to some database or other data source (tier 3).

RIA Services is making the task of building that tier 2, service tier, logic easier. The kinds of services you build there are in principle reusable by many clients, but in fact you tend to find that certain patterns of service work particularly well for RIA UIs, and so the RIA Services are targeted at satisfying those needs.

djna