vote up 0 vote down star

My standard WCF/ RESTful service is going to return big complex object. In WCF as and when someone adds the service reference it creates a proxy of it, i.e. I am exposing data contract to client and its strongly typed at the client level.

How are we going to do with RESTful service, is there anyway to the same for RESTful service.

flag

78% accept rate

1 Answer

vote up 0 vote down

One of the benefits of RESTful services is that they are lightweight. That implies no infrastructure like WSDL files, proxies, etc.

RESTful services are not self-describing, so you don't have to worry about providing a WSDL file; maintaining all the schemas online, etc.


If the payload is complex, then why are you using REST? Just because it's a fad? Do the operations on your service correspond to HTTP operations on "resources" as the HTTP Protocol specification defines it?

If not, then don't use REST.

link|flag
how to maintain the schemas then? So my client will not be having strongly typed classes which were there in WCF. – Miral Jun 17 at 10:48
Don't worry about your client. It's a REST service - the client is on his own. Just document it properly. – John Saunders Jun 17 at 10:50

Your Answer

Get an OpenID
or

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