According to Wikipedia, REST is defined as
REST is considered to be the architectural style of the World Wide Web. It was developed alongside the HTTP/1.1 protocol, while building upon the design of HTTP/1.0
The practices of REST have been in existence for a long time, evolving along with HTTP. By understanding the definitions correctly, we can leverage existing technologies to build RESTful services on top of them.
My goal is to create RESTful services on .Net 2.0 (even though this is easily achievable with WCF, I currently do not have access to it).
Is this feasible?
If so, could you please provide some working examples?
Are there any blogs or resources online that cover the implementation of this approach?
EDIT:
I forgot to mention one thing.
- Is it possible to consume REST services from JavaScript?
Thanks in Advance