Tagged Questions

Castle is an open source project for .net that aspires to simplify the development of enterprise and web applications.

learn more… | top users | synonyms

11
votes
6answers
2k views

Using MVC and fluent Nhibernate, how do I validate unique fields on my ViewModel before I bind them to my Domain Object and Save them?

I have a website where I allow users to create new Part records. I'm trying to figure out the best way to validate specific fields for uniqueness. I want to make sure that somebody doesn't try to ...
7
votes
1answer
754 views

Does Castle-Windsor support ForwardedTypes via XML configuration

I have a class that implements multiple interfaces. I would like to register these interfaces via XML. All I've found is documentation for the new Fluent Interface. Is this option supported via XML? ...
6
votes
5answers
2k views

How to overwrite a component with castle windsor?

I want to redefine an (default) implementation in a given windsor-container. Is that what OverWrite is for? Doesn't work, though. container.Register( ...
5
votes
2answers
1k views

Will castle bytecode provider for NHibernate 3.2.GA be available in nuget?

As you know NHibernate 3.2 has native bytecode provider, which has some breaking changes with castle bytecode provider. For example: public class SomeEntity { public virtual string SomeProperty ...
5
votes
2answers
434 views

How do you use Castle Windsor - Fluent Interface to register a generic interfaces?

Castle Windsor just came out with a Fluent interface for registering components as an alternative to using XML in a config file. How do I use this Fluent interface to register a Generic interface? To ...
5
votes
2answers
281 views

IoC - Constructor takes a runtime value as one parameter and a service as another

I have a WPF app which, when it starts, looks at the file system for some config files For each config file it finds, it displays some info in a different window Each window has an associated ...
5
votes
2answers
713 views

Castle DynamicProxy : How to Proxy Equals when proxying an interface?

I need to use Castle DynamicProxy to proxy an interface by providing an instance of it to ProxyGenerator.CreateInterfaceProxyWithTarget. I also need to make sure that calls to Equals, GetHashCode and ...
4
votes
2answers
101 views

How can I improve Windsor 3.0 startup time?

I am trying out Windsor 3.0 to see if we can upgrade. The following console application var t = DateTime.Now; var container = new WindsorContainer(); Debug.WriteLine("Created in " + (DateTime.Now - ...
4
votes
1answer
163 views

Castle Windsor Transient Disposables

I know this has been discussed ad nauseum...but I have an issue with the way Windsor is tracking Transient IDisposable objects. I understand the benefits of letting Windsor manage my ...
4
votes
2answers
436 views

NHibernate 2.1.2 in medium trust

I'm trying to configure nhibernate 2.1.2 to run in medium trust, without any luck. I have tried follwing the suggestions to run in medium trust and pre-generating the proxies. I then tried to remove ...
4
votes
2answers
882 views

Mocking internal classes with RhinoMocks

So I have a bunch of internal classes which I am trying to mock with RhinoMocks. I have added the following line to assemblyinfo.cs: [assembly:InternalsVisibleTo(RhinoMocks.StrongName)] However, ...
4
votes
3answers
2k views

Do you know how to implement transactions in Castle ActiveRecord?

I decided to make a system for a client using Castle ActiveRecord, everything went well until I found that the transactions do not work, for instance; TransactionScope t = new ...
3
votes
1answer
132 views

why do many instances of nHibernate sample code contain Castle dlls?

I see files like Castle.DynamicProxy.dll or Castle.Core.dll or Castle.Model.dll and various others similar in projects that are supposed to be simple, noob's introduction to nHibernate. What does this ...
3
votes
1answer
209 views

Castle ActiveRecord and AfterLoad event

Castle ActiveRecord has BeforeLoad event but I need AfterLoad event too. I know it's possible to use NHibernate's PostLoad event. But how can I do this?
3
votes
1answer
353 views

How to get Castle Client Side Validation with xVAl

Has anybody had problems using Castle and Client Side validation? I’ve found that only my numbers (Int, Decimal, Double, etc) gets picked up by ClientSideValidation. Strings, dates, enums and other ...
3
votes
4answers
452 views

How to detect if a Type is a generated DynamicProxy without referencing Castle DynamicProxy?

I am using castle DynamicProxy and was wondering if there is a way of detecting if a Type is a proxy without referencing Castle DynamicProxy? So while I am using Castle DynamicProxy as an example I ...
3
votes
3answers
5k views

Lazy loading with NHibernate Castle Facility

Do I have to close the ISession's that are generated by Castle's ISessionManager for NHibernate? How do I handle transactions with those ISession's? I'm still quite new to NHibernate. Edit: I would ...
3
votes
2answers
511 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
999 views

What's your opinion of Castle ActiveRecord?

I need a .Net ORM, and I heard some good things about this. I've had NHibernate running in the past, but this seems to make a lot of things easier. However, two things made me a little nervous. It ...
3
votes
1answer
602 views

Does Castle Windsor allow the resolution of value types?

I'm trying to pass a parameter into a component that requires a System.TimeSpan. I'm only able to get the 'long ticks' ctor to resolve. Here's a snippet of the config file: <component ...
2
votes
1answer
226 views

Castle Windsor 3 + Fluent NHibernate + Castle.NHibernate.Integration

I have created a sample project to replicate an issue I'm having with Castle Windsor and the NHibernate Integration Facility. I get the following exception: Method not found: 'Void ...
2
votes
2answers
107 views

Duck typing / dynamic proxies on existing instances of objects

I have an object handed into our library and passed through various processes. I need to attach some additional information to these objects as they pass through various stages and out the other end - ...
2
votes
0answers
149 views

how to use latest castle windsor wcf integration facility

I'm playing around with Castle WCF integration facility because I want to integrate my WCF services with windsor IOC. The issue I'm facing is that I can't set IKernel for DefaultServiceHostFactory. ...
2
votes
2answers
73 views

Castle windor Adding conditional dependency

I have 2 implementations of the same interface and want to use implementation1 if the user is logged in or implementation2 if the user is not logged in. How can I configure this with castle windsor? ...
2
votes
1answer
238 views

Moq + Castle Dynamic Proxy - exception mocking nested generic interfaces

I'm receiving an argument exception from Castle Dynamic Proxy, while using Moq to create a mock of object that is implementing a nested generic interface with generic method that has an interface ...
2
votes
2answers
106 views

MEF Import from a Castle Kernel in Silverlight

I'm currently using MEF in my project, however, a legacy component uses Castle to export all its components. I would like to be able to Import from this kernel when creating new objects, in addition ...
2
votes
1answer
506 views

The invoked member is not supported in a dynamic assembly.

Since upgrading to NHibernate 3.2.0.400, Castle.Core 2.5 and FNH 1.2.0.712, whenever we start the application the following exception is throw: The invoked member is not supported in a dynamic ...
2
votes
1answer
314 views

ASP.NET MVC JSON over Fluent Nhibernate Model

I am trying to return JsonResult using MVC controller standard Json(object) method. My object of type Model1 is built by Fluent NHibernate. Model1 has property of type Model2. In debug mode I see ...
2
votes
1answer
159 views

Using AOP techniques to intercept ADO.Net

I have quite a large code base using a variety of different ADO technologies (i.e. some EF and in some cases using ADO.Net directly). I'm wondering if there is any way to globally intercept any ...
2
votes
1answer
335 views

Testing Castle windsor Component with PerWebRequest lifestyle

I'm trying to do some testing with castle windsor involved, in one of my tests I want to check the windsor installers, so I check that the container can resolve my components given its interface. So ...
2
votes
1answer
376 views

Castle Windsor: Register two interfaces as one singleton with interception

Following my previous question regarding Unity ( Unity: Register two interfaces as one singleton with interception ), I tried to do the same with Castle Windsor: I have a class that implements two ...
2
votes
1answer
350 views

Performance overhead of using IoC containers with MVC3

I have an MVC3 application that I hope will be serving a large number of user requests. I would like to use an IoC container but don't want it to slow down the performance of my application. I read ...
2
votes
4answers
214 views

How can I pass a runtime parameter to a previously registered factory method using castle windsor?

I have a reporting MVC application that uses Castle Windsor. On application start up (in global.asax) all of the types are registered and then each subsequent request to the application resolves the ...
2
votes
4answers
243 views

castle IOC - resolving circular references

quick question for my MVP implementation: currently I have the code below, in which both the presenter and view are resolved via the container. Then the presenter calls View.Init to pass himself to ...
2
votes
2answers
244 views

How to handle XSS on NVelocity

Castle Project is full of features, includes some awesome subprojects, and developing with it has been a pleasure. My team is almost ready to deliver a custom made EAM and we are polishing our ...
2
votes
2answers
88 views

CastleWindsor filling the class fields too

I am a beginner using castle windsor; and kinda introduced to it with Apress Pro Mvc book. In the project that I am working at; I use castlewindsor controller factory instead of mvc controller ...
2
votes
2answers
483 views

How do you use Castle Validator with Subsonic generated classes?

Castle Validator uses attributes to specify validation rules. How can you hook these up with Subsonic's generated classes (or any classes where you can't define the attributes on)? Is there a way to ...
1
vote
2answers
65 views

NuGet: NHibernate, Castle.Core 3.0 and where is ProxyFactoryFactory?

I installed with NuGet the packages NHibernate and Castle.Core 3.0 for a new project. Usually we copied around the dlls manually, it is the first time I do that with NuGet. Now I can't find out how ...
1
vote
1answer
97 views

How to build a custom Validator for Castle Validation on client-side?

I'm using castle validation and I'd like to know why my validator is not working : [Serializable] public class PositiveIntegerValidator : AbstractValidator { public override bool ...
1
vote
0answers
39 views

Handling PropertyChanging/PropertyChanged via Castle's DynamicProxy

I currently have a setter method which looks like this: private string _a; public virtual string A { get { return _a; } set { if (_a!= value) ...
1
vote
3answers
132 views

use Type.GetType(string) in C# 2.0 .net but type or namespace name 't' could not be found

I'm not sure how to correct this. I have public void get_json(String TYPE) { Type t = Type.GetType("campusMap." + TYPE); t[] all_tag = ActiveRecordBase<t>.FindAll(); } But I always ...
1
vote
1answer
35 views

Best strategy for unit testing controller front to back in ASP.NET using DI

I'm new to DI and have a question about the best strategy for unit testing a controller. I have a controller that uses DI to get the repository, mappingengine and logger. This is basically how i ...
1
vote
1answer
47 views

Castle Windsor Register with implementation passed in on constructor

In Castle Windsor I want a particular concrete implementation to be passed into the constructor of a container registered class. Something like this (I know the syntax is illegal at the end ;-)): ...
1
vote
2answers
129 views

Transactions using Castle AutoTx Facility and NHibernate Facility

I'm trying to use the Castle NHibernate Facility with the AutoTx Facility. As a test, I'm throwing an exception in the middle of my service, to make sure the transaction is rolled back. However, the ...
1
vote
1answer
42 views

Registeting interceptors after Component registration in Castle

I have a facility which needs to register an interceptor and then register this interceptor against a subset of the components already registerd in the container Castle Kernel. The facility lives in ...
1
vote
1answer
33 views

Castle IInitializable exception not propagated

Considering this code : public class A { public B b { get; set; } } public class B : IInitializable { #region IInitializable Members public void Initialize() { throw new ...
1
vote
1answer
123 views

How do you configure Castle Windsor error handling during the creation of components?

I have a component registered with Castle Windsor which depends on a list of components, each of which is represented by an interface. Castle Windsor is configured similar to the code below. public ...
1
vote
1answer
101 views

Version conflict with Castle.Core when using White and NHibernate

I found an issue trying to add White functionality to our testing framework based on Selenium WebDriver. After adding all references to project, it compiles without errors. But it throws an exception ...
1
vote
1answer
57 views

Do I need svc file to setup Castle Wcf Facility for non-HTTP services

I am confused about the castle wcf facility registration. I read some blog posts for BasicHttpBinding. But could not find a clear easy sample to setup a net.tcp setup. I want to host the service ...
1
vote
0answers
30 views

Why no IChangeProxyTarget on IInvocation instances generated by ProxyGenerator.CreateClassProxyTypeWithTarget via InheritanceInvocationTypeGenerator?

Is it by design to prevent changing the proxy target for concrete types? If so, why? Background: I have a concrete class that I want to proxy. Further, I want to replace the target of the proxy at ...

1 2 3 4 5