vote up 0 vote down star

I have a MVC pattern in place where I have been developing WinForms and WebForms against. Now, I would like to move onto Silverlight and thus need to 'web services'-enable my Model layer.

Where do I start? I can't seem to find any good resources. Many talk about EF or ADO.NET Data Services. What do I need to do to my Model layer to enable it for WCF REST?

flag

23% accept rate
Are you using ASP.NET MVC or merely "a MVC pattern"? Can you give us an idea of what your "model layer" looks like currently? – Dennis Palmer Jun 11 at 21:12
I am using an MVC pattern and not using the ASP.NET MVC framework. That's why I've been able to transition between WinForms development and WebForms development and would now like to move to other UI technologies. e.g. SL. Model layer consists of Objects/Collections and a DAL. – unknown (google) Jun 11 at 21:59

2 Answers

vote up 0 vote down check

There are many approaches you can take to build your server-side

  • ADO.NET Data Services - here is some documentation
  • ASP.NET MVC - if you do decide to use ASP.NET MVC, then this tutorial shows you how to access the service from Silverlight. Essentially Tim is showing you how to access the particular REST service exposed by ASP.NET MVC, but the same techniques (WebClient, etc) can be used to talk to any REST service
  • Build your own WCF SOAP-based service which implements the MVC pattern. This link shows you how to build and access WCF SOAP-based services in Silverlight.
  • Build your own REST service which implements a MVC pattern. There is a universal way to comsume any REST service from Silverlight, which is described here. To build the rest service you can use whatever platform you choose. You may consider the WCF REST support that comes out-of-the-box in .Net 3.5, or the WCF REST Starter Kit, which builds on the out-of-the-box REST support in WCF to give you some extra features. Or you can consider any other REST service framework of your choosing.
link|flag
Excellent information thanks! – unknown (google) Jun 23 at 23:29
vote up 0 vote down

If you are going to proceed with the technologies you are talking about then forget completely about the term REST. What these technologies allow is you to do is object remoting over HTTP with the HTTP verbs. There is nothing wrong with that, just be aware of what you are trying to achieve.

The more you read and understand about REST the more confused you will get while trying to use Silverlight 3, ADO.Net Data Services, WCF REST Starter kit. These are all fine technologies to achieve what they were designed to do. Unfortunately, you will not learn how to do REST properly from these tools.

If you really want to do REST in .Net then start looking at OpenRasta.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.