MonoRail (software)

Castle Project:MonoRail
Developer(s) Castle Project
Stable release
2.1 RC[1] / March 17, 2011 (2011-03-17)
Development status stalled
Operating system Cross-platform
Type Application framework
License Apache 2.0
Website www.castleproject.org/projects/monorail

MonoRail (formerly called Castle on Rails), a component of the Castle Project, is an open source web application framework built on top of the ASP.NET platform. Inspired by Ruby on Rails Action Pack,[2] MonoRail differs from standard ASP.NET Web Forms development by enforcing separation of concerns using a model–view–controller (MVC) architecture.[3] The framework is commonly used in conjunction with Castle ActiveRecord, an ORM layer built on NHibernate. In January 2010, version 2.0 of MonoRail was released, however, many projects use the trunk version of the source to take advantage of new features without waiting for official releases.

Although the project's name is MonoRail, it does not have any affiliation with the Mono project.

How it works

The framework maps web requests to an "action", which is a regular .NET method on the controller. The controller is responsible for invoking business services and controlling the application's flow. When it is time to send the web response to the client, the controller sets a view template to be rendered, putting data in a special dictionary object known as the "Property Bag", and delegates the template rendering to a view engine.

The view engine renders the template into the response stream utilizing the data in the property bag given by the controller. At this stage the view cannot access any other layer of the application, isolating the view from the application logic.

View engines

The mainstream view engine used in MonoRail is NVelocity, based on the Apache Velocity library. NVelocity is supplied with simple control blocks such as if statements and foreach loops. The NVelocity view templates are text files with the extension '.vm'.

Other view engines in use:

Other view engines

Building other view engines is quite simple and straightforward. Brail, StringTemplate and AspView were all created by independent developers to suit their own needs.

Other view engine are:

  1. ASPX
  2. Spark
  3. NHaml
  4. NDjango
  5. Hasic
  6. Brail
  7. Bellevue
  8. SharpTiles
  9. String Template
  10. Wing Beats
  11. SharpDOM
  12. Razor
  13. Azure

References

Further reading

Resources

Blogs on MonoRail

This article is issued from Wikipedia - version of the 2/13/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.