Tagged Questions

Castle MonoRail is a MVC web framework for .NET

learn more… | top users | synonyms

33
votes
2answers
3k views

Service Layers and Repositories

I've been using MVC frameworks for a short while now and I really like how the concerns are separated out. I've got into a bad habit of letting the controllers do quite a bit of work. So I'm really ...
21
votes
4answers
5k views

Asp.Net MVC vs Castle MonoRail

I've some experiences on build application with Asp.Net, but now MVC frameworks become more popular. I would like to try building new multilingual web application using with Asp.Net MVC or Castle ...
8
votes
5answers
1k views

From Monorail to ASP.Net MVC

The last time I took on a non-trivial .Net/C# application I used Castle Monorail and, on the whole, enjoyed the experience. Early-access/preview releases of .Net MVC were not yet available. Many ...
5
votes
2answers
1k views

Unity: Build up a dictionary

I'm converting a Castle/Monorails application into a Unity/Asp.NET MVC one, I'm stuck in trying to converting this component configuration: <component id="ComponentBaseConfiguration" ...
5
votes
3answers
2k views

Castle MonoRail Routing with IIS 7?

I’m trying to make the routing module works with default action or controller, but it doesn’t. I always face with 404 page not found. Did I forget to do something? I really like routing in ASP.NET MVC ...
4
votes
2answers
546 views

Gzip compression using IIS6.0 for files without an extension

Has anyone managed to activate Gzip compression on a website in IIS6 ? We're using Castle Monorail (it's very nice btw) and as a result have clean RESTful URLs with no extensions..... ..... and ...
4
votes
2answers
865 views

Problem with NVelocity, foreach and two Lists

is there an easy way to solve the following problem. Let's say I fetch a IList with some books in my controller from my model. Now I want to enrich the output and fetch a preview from Amazon with ...
4
votes
5answers
306 views

Is MonoRail ready for productive usage?

Right now I'm not sure...
4
votes
5answers
386 views

Improving MonoRail

We know it's lacking documentation but what other parts would you like to see improved?
3
votes
1answer
263 views

Automatically HTML Encoding NVelocity Output (EventCartridge & ReferenceInsert)

I wanted to try getting NVelocity to automatically HTML encode certain strings in my MonoRail app. I looked through the NVelocity source code and found EventCartridge, which seems to be a class which ...
3
votes
3answers
143 views

MVC Logic, Views and Helpers - A Specific Story

Me and a colleague are discussing how we would generate a link on a page. Should we use html helpers or keep very simple view logic in the view? For this project we are using Castle Monorail and the ...
3
votes
2answers
1k views

How do you get the User's IP Address in Castle MVC (Monorail)?

In a controller action of a CastleMVC application, how can I get the user's IP Address? I think in asp.net mvc it would be Request.ServerVariables["REMOTE_ADDR"], but I can't find an equivalent in ...
3
votes
1answer
42 views

Entire monorail action invocation in tests

BaseControllerTest.PrepareController is enough for controller properties setup, such as PropertyBag and Context [TestClass] public ProjectsControllerTest : BaseControllerTest { [TestMethod] public ...
3
votes
4answers
369 views

.NET Hashtable - “Same” key, different hashes

Is it possible for two .net strings to have different hashes? I have a Hashtable with amongst others the key "path". When I loop through the elements in the table to print it, i can see that the key ...
3
votes
2answers
508 views

Is there an equivalent to Monorail view components for the ASP.Net MVC Framework?

I make heavy use of View Components in some of the larger applications I've built in Monorail - What is the equivalent approach in ASP.Net MVC for a view component, that can support sections etc.?
3
votes
3answers
163 views

Could we use with and without extension on different actions in MonoRail?

I would like to build a web application on Castle MonoRail, I was wondering how can we use an action with extension and another action without extension? How can HTML helper generator url for us? Ex: ...
3
votes
2answers
464 views

Castle MonoRail & ELMAH

Is anyone using Castle MonoRail and ELMAH with success? We are using a number of Resuces to present users with friendly error messages, but if we do this the exceptions never get as far as ELMAH as ...
3
votes
1answer
330 views

How to fake a validation error in a MonoRail controller unit-test?

I am running on Castle's trunk, and trying to unit-test a controller-action where validation of my DTO is set up. The controller inherits from SmartDispatcherController. The action and DTO look ...
3
votes
3answers
1k views

How can I format a javascript date to be serialized by jQuery

I am trying to set a javascript date so that it can be submitted via JSON to a .NET type, but when attempting to do this, jQuery sets the date to a full string, what format does it have to be in to be ...
2
votes
1answer
164 views

Is there an equivalent of Java's Spring MVC style url mapping for C#/.NET?

I am looking for the C# equivalent of Spring MVC's url mapping using annotations, i.e in Java I can write: @Controller @RequestMapping("/some-friendly-url/") class MyController { ...
2
votes
3answers
418 views

How to set different Timeouts for different URLs in ASP.NET

I want different connection limits for some URLs in my application. Some URLs accept file uploads and need to have a large Connection Timeout. All other URLs need a much smaller timeout to prevent ...
2
votes
1answer
113 views

ViewComponent not found after upgrading Monorail from v1.0.3 to v2.1RC

I'm using Monorail in my C# web application. Since I upgrated it (.Net Framework 2 to 4 and Monorail 1.0.3 to 2.1RC), my ViewComponent class is not found. All my controllers seem to work fine. I'm ...
2
votes
1answer
229 views

Monorail, nhibernate and session-per-request pattern

I need some insights and thoughts about a refactoring I'm about to do to our web-app. We initially used the session-per-request pattern with NHibernate and ActiveRecord by using the On_BeginRequest / ...
2
votes
2answers
94 views

Feedback on Mono rails

Has anybody tried Mono rails from Caste project . Unfortunately the client wants to develop in .nET v2.0 and not 3.5 , and I was looking for some MVC framework in .NET 2.0 .
2
votes
1answer
110 views

Is there a LINQ Equivalent for ARDatabind in ASP MVC.net?

Is there any attribute that one can put on a parameter for an action that tells LINQ to load a particular entity and only databind on the values that have changed a la Active Record/Monorail (see ...
1
vote
2answers
56 views

How To: Save a file from a webservice without stopping the page from rendering

I have a controller with two pages, Index and Download, when clicking download it retrieves a byte[] from the service and I use Response.BinaryWrite to save the file. The problem with this is that ...
1
vote
1answer
99 views

How to get more info on NHibernate's Illegal attempt to associate a collection with two open sessions

Our project has been using NHibernate with success for quite some time. However, in the last months of new development we managed to make a change that gives us lots of: ...
1
vote
1answer
65 views

Spark Include tag with variable in href

I want to include a spark view in another spark view. I've tried to use the include tag. But it doesn't seem to support variables as part of the href attribute. Eg. <include ...
1
vote
2answers
23 views

Monorails. Although I use Rescue attributes, 500 “Error processing action” is still thrown

In my monorails project. I use attribute Rescue [Rescue("generalerror", typeof(System.Exception))] but the error 500 "Error processing action" still is thrown. How can I hide it?
1
vote
2answers
532 views

Where to get the source code of castle project

The castle project is open source. I am wondering where to get its source code. I cannot find it.
1
vote
2answers
153 views

Get current sessions for Castle-Monorail site?

I'm modifying a Castle-Monorail site that I've inherited and found that it would be useful to see a list of currently online users. Currently there are Filters that determine who can access which ...
1
vote
1answer
133 views

Can Castle Monorail and ASP.NET MVC coexist in the same project?

I have a large Monorail project that we have decided we are going to move over to ASP.NET MVC. Most of the underlying system will likely be reusable, but the Controllers will of course have to be ...
1
vote
0answers
205 views

Attempted to read or write protected memory

Using monorail and nhibernate when saving a business object to the database I am now getting the error: Attempted to read or write protected memory. This is often an indication that other memory is ...
1
vote
2answers
127 views

Jeditable Problem in castle monorail

I am trying to use Jeditables (http://www.appelsiini.net/projects/jeditable) in my first castle monorail mvc application I managed to have the textbox appearing and to the the ajax call, my problem ...
1
vote
1answer
195 views

Does NVelocity support foreach.count?

I'm using the NVelocity from the Castle project and according to the velocity specs I should be able to access the loop counter like this: $foreach.counter But I can't get it to work so I suspect ...
1
vote
2answers
99 views

Can I load controllers in Monorail using MEF?

I've used MEF for a few projects at work and I've just stared messing about with Monorail in my spare time. I was wondering if there was any way that I could use MEF to load the controllers that ...
1
vote
1answer
181 views

Cancel controller action from Initialize()

I have come across a scenario where I have some initialization code on my conrtoller, which might identify an invalid state which will demand some user interaction. There for, I want to redirect the ...
1
vote
1answer
680 views

How to configure IIS 7.5 for extensionless url's on castlerock monorail

I'm using Windows 7 (IIS 7.5) and have been struggling with getting it setup to use extensionless url's. This is what my web.config looks like: <system.webServer> <validation ...
1
vote
1answer
72 views

Is it possible to use System.Web.Routing in Castle Monorail?

Is it possible to use the Microsoft (or Mono) supplied System.Web.Routing instead of the MonoRail routing stuff when building a Castle MonoRail app for ASP.NET? Any good information on how to ...
1
vote
2answers
233 views

Castle Monorail in Asp.NET web site?

In our system most of the code is in an asp.net (2.0) web site, I discovered Castle Monorail a few month ago and I think it's really easier to use than asp.net / webforms. Here is what we need : - ...
1
vote
4answers
479 views

Server.TransferRequest returns blank page on specific server

I'm facing an issue that seems to be related to configuration. I have a webapplication based on MonoRail, where we utilize the routing feature from MonoRail. On the first request after the ...
1
vote
1answer
169 views

MonoRail - Server-side vs. Client-side Form Validation

I'm using MonoRail and was wondering how it decides when to use client-side vs. server-side validation? In my model class I have [ValidateNonEmpty] on two properties, one is a textbox, the other is a ...
1
vote
2answers
113 views

Template in monorail ViewComponent

Is it possible to have a template with html content in vm for a block component? I'm doing a lot of stuff in html, and want the html reside in a .vm, not in codebehind. Here is what i've got: ...
1
vote
2answers
378 views

After upgrading to Castle Trunk and NHibernate 2.1.0.4000 My Integration tests crash TestDriven.Net

I have an old MonoRail/ActiveRecord I've been doing some work too. Recently I decided to upgrade the application to Castle Trunk & NHibernate 2.1.0.4000 GA and I'm now finding a few issues with ...
1
vote
5answers
661 views

Asp.Net Mvc 2 reusable parts?

I wonder, is there an equivalent of the Monorail View components for Asp.Net MVC? What I m trying to do is render some complex UI that depends on a class, so say we are in a List view, I want to pass ...
1
vote
1answer
254 views

Ajax Call to Monorail Controller JQuery

I could really use an example of this. Can anyone provide me with a sample implementation of a Javascript function using JQuery (not totally necessary) to make a Castle Monorail call? I have Monorail ...
1
vote
7answers
1k views

Alternative to query string and cookies when sending data to server?

I have a small (or perhaps not so small) issue with some ASP.NET/Castle Monorail sites for a product I work on. This is a fairly legacy system (written well before my time), and it uses GET requests ...
1
vote
0answers
278 views

Problems with repository pattern reuse and query support

I've been reading both ddd and PoEAA books, and searching a lot on the web but i'm still confused and i think there is something i'm missing about the repository pattern: Context of use: Web apps ...
1
vote
2answers
229 views

Log in function in monorail c#

Could anyone give me any good link to log in function in monorail c#? I am a newbie to monorail c# and need to implement one log in function. Thank you. Mealea
1
vote
1answer
255 views

Using Castle Windsor to inject IRailsEngineContext

Issue I am using Castle Windsor as an IoC container in a Castle Monorail project. I would like to inject the current instance of IRailsEngineContext into an object being resolved from the container ...

1 2 3