OpenRasta is an open source
REST implementation of the
MVC Framework. It models REST explicitly. To setup an OpenRasta, you start with a configuration file, which is a .cs class that implements IConfiguratorSource. IConfigurationSource is defined as the following:
using System;
namespace OpenRasta.Configuration
{
public interface IConfigurationSource
{
void Configure();
}
} The objects that are sent back by OpenRasta are
POCO objects.
EditAdditional Projects Around OpenRasta
Ryan Riley is currently developing an
ATOM implementation for OpenRasta.