Converting old WCF service to RIA one
Posted
by Artur
on Stack Overflow
See other posts from Stack Overflow
or by Artur
Published on 2010-04-17T17:19:35Z
Indexed on
2010/04/17
17:23 UTC
Read the original article
Hit count: 416
Hi there,
Currently I have a service that looks like:
Some app <--> WCF Service <--> Business Logic <--> Entity Framework Model <--> SQL Database
One of "some app" would be Silverlight, but there as well will be lots of other clients (mainly mobile devices).
To me the greatest benefit of having RIA services is possibility of making ordinary (not asynchronous) calls from Silverlight.
I wondered if there is an easy way of converting what I have so far to be a RIA service?
I as well wonder if there is a point of doing so if I plan to use the same service for multiple platforms/clients?
Any help/links would be greatly appreciated.
© Stack Overflow or respective owner