7
votes
2answers
120 views
Comparing Castle Windsor, Unity and StructureMap
In a follow up to Krzysztof’s statement that Windsor does a lot more than other IoC’s, I wanted to understand how these IoC’s stack up against each other and the benefits/additional facilities that …
2
votes
2answers
61 views
Which IOC runs in medium trust
Hi I am trying to get a website running with Mosso that has Castle Windsor as my IOC, however I am getting the following error.
[SecurityException: That assembly does not allow partially trusted …
3
votes
2answers
40 views
how to get dependencies injected in constructors in Windows Forms
in asp.net-mvc I have the Windsor Controller Factory that injects all the dependencies into the controllers, but how do you get this in Windows Forms ?
for example if have this Form1, how am I going …
2
votes
9answers
108 views
I am looking for a simple yet practical and robust IOC\DI framework for .net
I am going to use it in a project with less-experienced developers so a complex framework such as Spring.NET is not an option. I was thinking about:
Ninject
Castle Windsor
StructureMap
Which would …
0
votes
2answers
77 views
Castle components dispose order
We have a number of castle windsor components declared in a config file.
Some of the components somewhere deep inside might require the services of other components.
The problem is when the …
0
votes
1answer
25 views
Set Nullable property to null via Windsor configuration file?
How to set a Nullable property of a class to null through Windsor configuration file?
Let's say I have a class like this:
public class MyComponent
{
public int? MyProperty { get; set; }
}
and …
0
votes
0answers
23 views
Castle Windsor WCF Facility host based only on a WCF service interface?
I have runtime provided WCF serrvice inteface :
[ServiceContract]
public interface IHelloService {
[OperationContract]
string SayHello(string message);
}
What I'd like …
1
vote
1answer
37 views
Convert Castle Windsor xml config to C# code
I want to convert something like this:
<components>
<component id=""service1"" service=""WindsorTests.IService, MyAssembly"" type=""WindsorTests.Service1, MyAssembly""/>
…
0
votes
1answer
49 views
Registering an Object that has a string array as a parameter using Castle Windsor Fluent Registration API
I have a hopefully simple question...
I am trying to change over from the XML registration to the Fluent Registration API, but am having one problem with registering objects that require an array as …
4
votes
2answers
140 views
Migrate from .NET MVC 1 to MVC 2 RC
Hi All,
I've migrated a MVC1 project to MVC2 RC, and now the site doesn't work at all. I get the error "Entry point was not found."
I migrated the project following this link
I'm using Castle …
2
votes
4answers
77 views
Castle Windsor - Staging vs Production connectionString parameter for a Component
I've been struggling with this problem, and while something elegant would be preferred any old hack will do at this point :)
I have a repository that is registered something like:
<castle>
…
0
votes
4answers
95 views
Injecting Dependencies into Domain Model classes with Nhibernate (ASP.NET MVC + IOC)
I'm building an ASP.NET MVC application that uses a DDD (Domain Driven Design) approach with database access handled by NHibernate. I have domain model class (Administrator) that I want to inject a …
0
votes
1answer
39 views
Castle and generics
Considering this code :
interface IRepository<T>
{
void Save();
}
class Repository<T>
{
public virtual void Save() // something
{ }
}
interface IOtherRepository : …
3
votes
2answers
130 views
Castle Windsor or Spring.NET - advantages and disadvantages
Yesterday I was reading some articles in this site while I stumbled on an article about this two new IoC tools. Which one should I learn first? Is there some specification about which one should be …
0
votes
1answer
28 views
wcf - disposing proxies properly
I am using wcf 4 and trying to use some Ioc container to resolve service dependencies. I was looking at Castle Windsor and StructureMap. I haven't use any of them with wcf.
The scenario is that I …
