Thoughts on Software by Andrew Davey
 Thursday, January 10, 2008
Snooze - A REST Framework for .NET

I have released an initial version of Snooze. http://www.assembla.com/wiki/show/snooze

Snooze is an REST framework for ASP.NET. It puts the emphasis back on the "R" of URI. The Resource concept is a first-class citizen.

In Snooze you create a resource class that defines the URI template and HTTP methods it supports.

[HttpResource("customer/{CustomerId}")] // Defines the URI template for this resource
public class CustomerResource : HttpResource // A useful base class that implements IHttpResource
{
    // URI template variables are mapped to properties
    public int CustomerId { get; set; }

    // Handles the HTTP GET method
    public override void Get()
    {
        RenderView("Customer", Data.Customers[CustomerId]);
    }

    public override void Put()
    {
        // Read data sent in Request body and update the customer...
    }

    public override void Delete()
    {
        // Delete the customer...
    }

    // HTTP POST can also be provided if it makes sense for the resource.
}

This will mean a URI like "http://yourserver.com/customer/42" will invoke the Get method of an instance where CustomerId equals 42.

What about creating a new Customer?

Well you don't have an ID for the new customer since that is probably created in the database. Therefore you don't know what the URI will be yet. The correct solution here is to POST the new customer data to a CustomerList resource, with URI "/customers".

Alternative GET Views

You can create extra GET methods:

[HttpGetView("edit")]
public void GetEdit()
{
    RenderView("CustomerEdit", Data.Customers[CustomerId]);
}

This results in URIs like "/customer/42?edit"

File Extensions

To support different file formats, such as XML and JSON use:

[HttpGetFile(".xml")]
public void GetEdit()
{
    SendXml(Data.Customers[CustomerId]);
}

This will be mapped to by URIs like /customer/42.xml

Sub-Resources

Resources can be naturally nested. For example, a Customer may have Orders.

[HttpSubResource(typeof(CustomerResource), "order/{OrderId}", true)]
public class OrderResource : HttpSubResource<CustomerResource>
{
    public int OrderId { get; set; }
    // ...
}

In this sub-resource, you can have access the parent CustomerResource, using the strongly-typed, ParentResource property.

URIs for this sub-resource will look like: "/customer/42/order/123"

The "true" argument in the attribute, specifies that parent query string parameters are added to this sub-resource URI as well. So a parent with URI template "customer/{CustomerId}?foo={Foo}" will yield sub-resource URI template "/customer/{CustomerId}/order/{OrderId}?foo={Foo}".

Nullable Resource Properties

Imagine a blog posts resource. Its URI could be /posts/{Year}/{Month}/{Day} to get all the posts on a given date. Now what if you want to naturally get the posts for a whole month, year, or ever?

By declaring the properties as nullable, e.g. "int?" in C#, Snooze will also map the "reduced" URIs to your class. You can then test the properties for "null" and return data accordingly.

Reusing Resource URIs

When rendering an HTML view it is likely you will need to link to other resources. Instead of manually typing the URI string, you can call the Uri property available on HttpResource.

new CustomerResource { CustomerId = 42 } .Uri

Resource Areas

Snooze supports resource "areas". These let you map all the resources of a given assembly into a given sub-path. If, for example, a third-party blogging package was built using Snooze you could include it as follows:

web.config:

<configuration>
  <restAreas>
    <area path="" assembly="MyWebsiteAssembly"/>
    <area path="blog" assembly="SomeCompany.BlogEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
  </restAreas>

So the blog resource URIs would look something like: http://mysite.com/blog/posts/2007/01

HTML Form Support

HTML forms only support GET and POST. To overcome this limitation you can include: <input type="hidden" name="__method" value="DELETE" /> to override the name of the HTTP method used by Snooze.

Feedback

This project came mostly out of curiosity! I wanted to see if REST could be done better under ASP.NET. The code is still very new (less than two days!) It is open source (BSD license) and available via SubVersion. A quick sample project is also provided.

Let me know what you think. Everything is open to changes. Join the assembla project if you would like to contribute your help.


Thursday, January 10, 2008 9:42:04 PM (GMT Standard Time, UTC+00:00)  #    Comments [1]   |  |  |  | Tracked by:
http://blastpr.com/wiki/js/pages/lipitor/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celexa/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/coumadin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/ultram/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prozac/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/soma/index.html [Pingback]
http://blastpr.com/wiki/js/pages/soma/index.html [Pingback]
http://blastpr.com/wiki/js/pages/viagra/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/ultram/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/hoodia/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cialis/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/viagra/index.html [Pingback]
http://blastpr.com/wiki/js/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lipitor/index.html [Pingback]
http://blastpr.com/wiki/js/pages/paxil/index.html [Pingback]
http://blastpr.com/wiki/js/pages/claritin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/nexium/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celebrex/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/accutane/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/rainbow-brite/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celexa/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cymbalta/index.html [Pingback]
http://blastpr.com/wiki/js/pages/clomid/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/paxil/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lexapro/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/tramadol/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lexapro/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/wellbutrin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/synthroid/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/claritin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/wellbutrin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/prozac/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/synthroid/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prilosec/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/clomid/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/04726190/index.html [Pingback]
http://swellhead.netswellhead.net/docs/42306518/index.html [Pingback]
http://discussgod.com/cpstyles/docs/62161481/index.html [Pingback]
http://plantmol.com/docs/24471383/index.html [Pingback]
http://thebix.com/includes/compat/docs/51589391/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/25746442/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/86309858/index.html [Pingback]
http://witze-humor.de/templates/images/docs/83157240/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/48335156/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/63224938/index.html [Pingback]
http://slaterjohn.com/downloads/2col/28436634/index.html [Pingback]
http://allfreefilms.com/wp-includes/js/46226552/index.html [Pingback]
http://martinrozon.com/images/photos/docs/56637999/index.html [Pingback]
http://entartistes.ca/images/images/docs/81367526/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/33460308/index.html [Pingback]
http://ncdtnanotechportal.info/generator/docs/87198700/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/68291686/index.ht... [Pingback]
http://pddownloads.com/docs/94929363/index.html [Pingback]
http://ipsilon.hr/ipsilon.hr/cms/4/lib/docs/55227677/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/73811526/index.html [Pingback]
http://realestate.hr/templates/css/docs/28593877/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/91708760/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/86193101/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/34320152/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/36483653/index.html [Pingback]
http://jivest2006.com/docs/76826750/index.html [Pingback]
http://pddownloads.com/docs/08296030/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/37348396/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/82710340/index.ht... [Pingback]
http://thebix.com/includes/compat/docs/29852280/index.html [Pingback]
http://ncdtnanotechportal.info/generator/docs/13227634/index.html [Pingback]
http://legambitdufou.org/Library/docs/28049195/index.html [Pingback]
http://plantmol.com/docs/60217277/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/54089144/index.ht... [Pingback]
http://lecouac.org/ecrire/lang/docs/25282359/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/56008043/index.html [Pingback]
http://temerav.com/images/menu/46200403/index.html [Pingback]
http://swellhead.netswellhead.net/docs/79619129/index.html [Pingback]
http://seo4u.at/images/docs/76783685/index.html [Pingback]
http://allfreefilms.com/wp-includes/js/27702077/index.html [Pingback]
http://sevainc.com/bad_denise/img/12/zoloft/ [Pingback]
http://easytravelcanada.info/js/pages/6/lexapro/ [Pingback]
http://sevainc.com/bad_denise/img/12/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/4/cymbalta/ [Pingback]
http://sevainc.com/bad_denise/img/3/claritin/ [Pingback]
http://simpletravelcanada.info/js/pages/27277365/ [Pingback]
http://easytravelcanada.info/js/pages/10/synthroid/ [Pingback]
http://sevainc.com/bad_denise/img/6/lexapro/ [Pingback]
http://easytravelcanada.info/js/pages/7/nexium/ [Pingback]
http://sevainc.com/bad_denise/img/8/paxil/ [Pingback]
http://easytravelcanada.info/js/pages/11/tramadol/ [Pingback]
http://easytravelcanada.info/js/pages/11/ultram/ [Pingback]
http://sevainc.com/bad_denise/img/8/prilosec/ [Pingback]
http://easytravelcanada.info/js/pages/8/prilosec/ [Pingback]
http://easytravelcanada.info/js/pages/2/celexa/ [Pingback]
http://easytravelcanada.info/js/pages/9/rainbow-brite/ [Pingback]
http://easytravelcanada.info/js/pages/3/clomid/ [Pingback]
http://easytravelcanada.info/js/pages/12/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/7/melatonin/ [Pingback]
http://sevainc.com/bad_denise/img/2/cialis/ [Pingback]
http://ina-tv.sk/img/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/1/accutane/ [Pingback]
http://sevainc.com/bad_denise/img/7/nexium/ [Pingback]
http://easytravelcanada.info/js/pages/8/paxil/ [Pingback]
http://inatelevizia.sk/ad/img/cialis/ [Pingback]
http://birds.sk/img/cialis/ [Pingback]
http://adventure-traveling.com/images/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/1/celebrex/ [Pingback]
http://sevainc.com/bad_denise/img/5/effexor/ [Pingback]
http://abaffydesign.com/la/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/6/lipitor/ [Pingback]
http://sevainc.com/bad_denise/img/11/tramadol/ [Pingback]
http://sevainc.com/bad_denise/img/10/soma/ [Pingback]
http://easytravelcanada.info/js/pages/12/zoloft/ [Pingback]
http://sevainc.com/bad_denise/img/4/coumadin/ [Pingback]
http://sevainc.com/bad_denise/img/9/prozac/ [Pingback]
http://sevainc.com/bad_denise/img/5/hoodia/ [Pingback]
http://odin.net/images/pages/52807681/are-baby-walkers-bad.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/virgin-vagina-pic.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/college-girls-escorts.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/teen-doggystyle-fucking-fr... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/little-match-girl-story.ht... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/adult-bib.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/nude-fake-celebs-pics.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/cheerleader-erotic-stories.... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/access-to-sex-web-sites.ht... [Pingback]
http://odin.net/images/pages/52807681/index.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/what-are-some-sex-hotline-... [Pingback]
http://odin.net/images/pages/35694472/romance-stories-novels-or-reads.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/lindsay-lohan-nude-picture... [Pingback]
http://odin.net/images/pages/35694472/anglina-jolie-nude.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/list-of-teen-sites.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/anime-preteen-sex.html [Pingback]
http://odin.net/images/pages/52807681/all-fours-thumbnail-naked-girl.html [Pingback]
http://odin.net/images/pages/35694472/sexy-female-escorts-in-delhi.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/ametuer-zoo-girls.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/vip-adult-clubs.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/porn-pictures-of-girls.htm... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/debra-wilson-nude-pics.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/erotic-pictures-of-oral-se... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/image-uploading-adult.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/agent-scully-alien-fuck.ht... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/free-pictures-of-amateur-po... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/preview-girls-gone-wild-cli... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/adult-free-gay-porn.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/baby-shower-graphics.html [Pingback]
http://odin.net/images/pages/35694472/art-bdsm.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/sex-toys-oregon.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/free-little-amateur-thumbs.... [Pingback]
http://odin.net/images/pages/52807681/erotic-slavery-stories.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/short-stories-moral-lesson.... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/view-free-sex-scenes.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/the-internet-is-for-porn.h... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/gay-baseball-player.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/oops-celeb.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/dress-up-online-games-for-l... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/animal-sex-bondage.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/cards-adult-humor.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/oral-sex-instruction-pictu... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/celebrities-sexy-pictures.... [Pingback]
http://odin.net/images/pages/35694472/kate-winslet-nude-scenes-in-jude.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/erotic-literature-for-women... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/kid-sex.html [Pingback]
http://odin.net/images/pages/35694472/downloadable-porn-videos.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/hentai-spider-man.html [Pingback]
http://odin.net/images/pages/35694472/hottest-movie-sex-scenes.html [Pingback]
http://odin.net/images/pages/35694472/thumbs-of-squirting-babes.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/federal-judge-sex-scandal-a... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/girl-teen-underwear.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/what-is-the-mature-ripened... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-soma-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-hydrocodone-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-valium-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-viagra-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-vicodin-online.html [Pingback]