0
votes
0answers
11 views

Castle Activerecord and Nhibernate with property-ref

I have a database schema that I can't change. It has integer primary keys, and a unique UUID column in the models. The foreign keys are done through the UUID column (not the primary key) For example, ...
0
votes
1answer
25 views

Can I use the Castle Logging facility during registration phase?

I am using the Castle Windsor logging facility and it's working great. I have an installer which registers an interceptor plus a facility to hook up to events so that I can keep most of my code ...
0
votes
1answer
11 views

Implementing “nested” properties in Entity Framework

Edit: looks like this is called a "complex type" in Entity Framework, and I see how I would be able to set the name on columns for having once complex type contained in a class, but I don't know ...
0
votes
0answers
36 views

Defined a dictionary with windsor config

I'm failed to define a IDictionary<string,List<string>> in windsor xml file my class (C#): public class myService { public IDictionary<string, List<string>> ...
0
votes
0answers
13 views

Querying both a base class and a derived class in a single queryover

So this seems a little complicated on my side, so I'll try and first set the scene as clearly as possible. [ActiveRecord, JoinedBase] abstract BaseClass { public x; public y; } ...
3
votes
3answers
87 views

C# Namespace conflicts

Say I'm working inside a namespace called, for example, Org.Company and that this namespace contains MyClass. I'm also importing a nuget with a namespace called Company with a class named OtherClass. ...
0
votes
0answers
62 views

Castle Windsor - slow debugging

I have recently started working on an ASP.NET MVC project that uses Castle Windsor. The problem is, each time I try to debug the application, this part of code takes a couple of minutes to execute: ...
0
votes
0answers
29 views

Interceptor for IEnumerable methods

I'm trying to write an interceptor that can work on any IEnumerable. I've been able to follow this question: "How to write interceptor for methods returning IEnumerable" and I can proxy direct ...
0
votes
1answer
48 views

Castle Windsor IoC doesn't inject log4net into my controller

I'm working out this(http://docs.castleproject.org/Windsor.Windsor-Tutorial-Part-Five-Adding-logging-support.ashx) IoC tutorial in Castle Windsor, I have passed all of the previous steps and as in ...
0
votes
0answers
17 views

FlushAction and Lazy attribute

I have a Solution 'MySolution' in VS. In one project 'Domain' I have defined de following classes: public class CarBase { public virtual void Foo(); } public class Car : CarBase { ...
0
votes
1answer
42 views

Castle Windsor, Non-Fluent NHibernate, and a PersistenceFacility

Does anyone have an example of the PersistenceFacility using non-fluent NHibernate (xml mappings in NHibernate) with Castle Windsor and code as configuration (no XML for Castle Windsor)? (ASP.NET MVC) ...
2
votes
3answers
63 views
+150

Do DynamicProxy classes work well with intellisense/type safety?

I was looking at using DynamicProxy classes, and I'm fairly new to this concept. Before I got too far down this road, I was wondering how well these classes work with IntelliSense and type safety? ...
2
votes
1answer
43 views

Castle Windsor Resolve at run time

I have been trying to fix this issue for quite a while and I am still none the wiser. I have got the following method: public IResult Parse(string[] args) { var argumentOption = new ...
0
votes
1answer
17 views

IWcfPolicy - add message headers on the fly

Is it somehow possible to add header info (or querystrings) to a wcf request on the fly? I've been messing around a bit with the IWcfPolicy like this: var xmlObjectSerializer = new ...
1
vote
0answers
46 views

access to the Object property after new Mock<RadNumericTextBox>() leads to NullReferenceException

I have to write some tests using moq framework (https://code.google.com/p/moq/). I want to check if some value can be read correctly from a telerik textbox in some ASP.NET application. Therefore I ...
0
votes
1answer
99 views

Castle Windsor WCF Facility doesn't work in release mode when code optimizations or full-pdb are disabled

I develop a project that uses Castle Windsor WCF Integration Facility as DDD architecture. There are a single container project, single domain project, several implementation projects and an ...
1
vote
2answers
44 views

Castle.Windsor - understanding transient lifestyle

New to Castle.Windsor and just wanted to check something. I've been reading about transient lifestyles and "releasing what you resolve" - I've created a Resource provider for my ASP.NET MVC3 ...
1
vote
1answer
75 views

How to use ExtendedLog4netLogger.cs to set logfile path for appender at runtime?

I am trying to figure out how to use the ExtendedLog4NetLogger.cs to change the log file path dynamically at runtime or using the LoggingFacility? This should be something similar to using log4net ...
0
votes
1answer
38 views

If there are two registrations for same component with different bound components, they should receive different instances?

I'm trying to understand how works bound lifestyle in Castle.Windsor and I think I don't get it yet :) So in test below, I'm testing following assumptions: 1) if component is bound to something, ...
0
votes
1answer
29 views

Castle Activerecord error is “relation does not exist” on Postgresql?

ActiveRecord mape: [ActiveRecord("JobTitle",Schema="public")] public class JobTitle :ActiveRecordValidationBase<JobTitle> { [PrimaryKey(Column = "Id")] public virtual int Id { get; ...
0
votes
0answers
31 views

UnitOfWork lifespan in WPF with an IoC Container

My basic setup is a lot like this; http://visualstudiomagazine.com/articles/2011/10/01/wpf-and-inversion-of-control.aspx An MVVM setup in WPF. I'm injecting a UnitOfWork and a RepositoryFactory into ...
0
votes
1answer
25 views

How to initialize and persist Castle ActiveRecordStarter per session for multi tenancy apps?

I am using Castle ActiveRecord in my Asp.net / MVC 2 / Multi-tenancy application with SQL Server as my backend. For every user logging in, the app loads the corresponding DB, dynamically at run time ...
0
votes
3answers
42 views

Castle Winsdor automatic resolving generic interfaces work incorrectly

I use Castle Winsdor as DI resolving tool. I map entites code: container.RegisterServices( Assembly.GetAssembly(typeof(GridEntityService<,>))); I have Interface with two generics: ...
4
votes
2answers
56 views

programatically change a dependency in Castle Windsor

I have a class that calls out to an internet service to get some data: public class MarketingService { private IDataProvider _provider; public MarketingService(IDataProvider provider) { ...
1
vote
1answer
108 views

Windsor 'Scope cache was already disposed' within Envers custom Revision Listener

Update: I think is down to a Windsor configuration, does any one have any idea as to what I have not configured correctly with Windsor? I am currently using Envers within a C# WebApi project. ...
0
votes
2answers
39 views

Replace Obsolete AllTypes class in Castle Windsor

I have this code from old castle IoC.Container.Register( AllTypes.FromAssemblyNamed( a ).Pick().WithService.FirstInterface().Configure( o => o.LifeStyle.PerWebRequest ) ); when I upgrade to ...
1
vote
1answer
44 views

List and resolve implementations of interface [Windsor Castle]

Since Autofac is not working on Mono I'm trying to switch to Windsor IoC framework. I want to search dll's for implementations of my interface IDataLoader and resolve all of them to instances. here ...
0
votes
2answers
49 views

DI Creational pattern

Been struggling with this for quite a while now, so I'm starting to think I have created an anti-pattern. Nevertheless, here goes; //Register self ...
0
votes
0answers
54 views

What do I need Castle Windsor and PostSharp when i have Entity Framework?

I generated a model (with EF) from my database ,i set Code Generation Strategy to None and then i created my (POCO) classes with the same properties as in model and now my business class are decoupled ...
1
vote
2answers
52 views

Adding service initialization method when using Castle Windsor IoC container

If my service have some initialization code, I know two options: Implement ISupportInitialize. Pro: Only depend on .NET native interface. Con: I normally only use BeginInit(), so there's always ...
0
votes
0answers
24 views

Intercept only service, not implementation in Windsor

I have this code: container.Register( Component.For(typeof(MyServiceInterceptor<>)), Component.For<IMyService<string>, MyServiceImpl<string>>() ...
0
votes
1answer
125 views

IoC: Castle Windsor and WebAPI

I have an MVC4 site using Castle Windsor that I want to add some WebAPI calls to, so I start digging around a little bit on the interwebs. Now I don't know the ins and outs of IoC; I followed a ...
0
votes
0answers
40 views

IKernel.RemoveComponent removed from castle windsor newer versions

I was keen to use this method IKernel.RemoveComponent so that I can dynamically update my service instance, and sadly enough the newer versions of Castle Windsor do not support this, what I was ...
2
votes
3answers
135 views

What is the difference between using the Service Locator anti-pattern and using the Castle Windsor container?"

Recently, I have been trying to understand what is the difference between using the Service Locator "anti-pattern" and using the Castle Windsor container. I have found some info here and there on the ...
0
votes
0answers
29 views

Castle Windsor Lifestyles not using same session

We recently upgraded to Castle Winsor 3.2 and ever since our unit tests have not been using the same session id. Any unit tests we run is encapsulated in in a transaction and rolled back after the ...
0
votes
0answers
47 views

Castle Windsor instance configuration

I am trying to implement some configuration (from distributed cache) injection using Castle Windsor into a message handler. The configuration of a single instance is straight forward, but I'm not ...
1
vote
0answers
49 views

How can WindsorContainer TypedFactory pass arguments to indirect objects

I know that TypedFactory facility will only pass the given arguments to the object it is resolving. But is there a way to make the same arguments be passed down to all indirect objects being ...
0
votes
1answer
45 views

Resolving dependencies with windsor castle

I have a factory class with dependencies on a repository class. How do I resolve the dependencies within my factory class? I could pass the dependency from my controller into the factory, but that ...
0
votes
1answer
50 views

Can the WindsorContainer pass a object through the resolve tree when using a factory

I have a problem like this: public interface IBaseVMFactory { public BaseVm Create(TransientDependency otherVM); } public class BaseVM { BaseVM(ChildVM1 child1, ChildVM2 child2) } public class ...
0
votes
0answers
18 views

Castle Dynamic Proxy with multiple targets

Is there any way to create a proxy with multiple targets? I don't see any obvious ways to do it. Has anyone ever done this? One solution might be to call ChangeInvocationTarget, then ...
1
vote
1answer
136 views

How to Inject Log4Net Logging through Castle.Windsor in NServiceBus

I would like NServiceBus to use the logger provided by the Castle.Windsor container, rather than providing it myself directly. Is there a way to achieve this? Following doesn't work as an exception ...
1
vote
0answers
76 views

Exception thrown when trying to map with automapper and castle windsor injection

I get the following error Missing type map configuration or unsupported mapping. Mapping types: RegistrationViewModel -> Member Here's my models public class Member { public int ID { get; ...
0
votes
0answers
106 views

Crud operations in WPF datagrid using activerecords

So I am working on an application that uses Castle Active Records. I use Visual Studio 2012, C# and wpf. My assignment is to take a table from a database (oracle) and using the wpf datagrid enable the ...
0
votes
1answer
25 views

CAstle Windsor: How to reference a second xml config file that is an embedded resource?

We have one xml configuration file that we use in production. We also have a little test app that has a couple of additional needs. What I'd like to do is create a second, testing-only xml config file ...
1
vote
1answer
153 views

Can't register MvcMailer with Castle Windsor

I'm trying to integrate MvcMailer into an ASP.NET MVC 4 app. I installed the package from NuGet and generated a mailer with the Scaffold command with no issues. I ended up with a new folder Mailers ...
1
vote
2answers
381 views

Expanding selenium2 functionality PageFactory

I want to add a functionality to selenium2 PageFactory. What I want is that FindsByAttribute was compatible with SelectedElement. The problem that I discovered that if I'm adding property with ...
2
votes
2answers
3k views

Castle Windsor: Auto-register types from one assembly that implement interfaces from another

I use Castle Windsor as my IoC container. I have an application that has a structure similar to the following: MyApp.Services.dll IEmployeeService IContractHoursService ... MyApp.ServicesImpl.dll ...
3
votes
2answers
3k views

What really interceptors do with my c# class?

I was asked to implement castle dynamic proxy in my asp.net web application and i was going through couple of articles which i got from Castle Project and Code Project about castle dynamic proxy in ...
29
votes
2answers
4k views

Design - Where should objects be registered when using Windsor

I will have the following components in my application DataAccess DataAccess.Test Business Business.Test Application I was hoping to use Castle Windsor as IoC to glue the layers together but I am ...
75
votes
3answers
12k views

What is Castle Windsor, and why should I care?

I'm a long-time Windows developer, having cut my teeth on win32 and early COM. I've been working with .Net since 2001, so I'm pretty fluent in C# and the CLR. I'd never heard of Castle Windsor until ...

1 2 3 4 5 51