Announcing Lullaby
Posted by: ASP.NET Announcements,
on 11 Sep 2008 |
View original | Bookmarked: 0 time(s)
Lullaby is an open source attribute-based REST API for building REST services on the .NET platform. There is an early beta available for download at http://code.google.com/p/ryanolshanrest. Portions of the code are based on REST.NET (http://code.google.com/restdotnet).Creating a REST Enabled ServiceCreate an web handler that inherits from Lullaby.RestHandler and register the web handler in Web.config.public class RestServices : RestHandler{}<add verb="*" path="RestServices.ashx"...