By tag: Castle
0
kicks
IoC & Convention over Configuration in an Agile world
James Kovacs (http://www.jameskovacs.com) is highly regarded figure in the .NET consulting community. The video linked in this kick is a great talk on how to simplify your codebase using Convention over Configuration with your IoC container. It also briefly touches on some other topics like testin...
0
kicks
Developer handkit for ASP.Net Developers
However skilled you are as a technician, without the appropriate tools you would still be a dud. Just like a craftsman knows his/her tools, a software professional also has to know the tools that are apt for the job.
0
kicks
IoC - ‘A Simple Example’ with Castle
A simple, easy to follow example of implementing IoC using Castle Windsor
0
kicks
Singleton WCF Proxy
Javi shows how to implement WCF singleton proxies with Castle taking into account faulted state scenarios.
0
kicks
"Mock" Backend for Castle ActiveRecord
Testing code that uses Castle ActiveRecord business objects requires some sort of back end for persistence. This approach allows you to use a "mock" back end with ActiveRecord so that you don't need to rely on a file system or database service to unit test your services.
0
kicks
Comparing .NET DI (IoC) Frameworks, Part 2
A second part of popular IoC frameworks comparison.
0
kicks
Comparing .NET DI (IoC) Frameworks, Part 1
A first part of feature comparison between the most popular DI (IoC) Frameworks: Castle, Unity, Autofac, Ninject, StructureMap and Spring.Net.
0
kicks
BREAKING NEWS! Castle Project Lead Hamilton Verissimo Joins Microsoft
In a strategic move on Microsoft’s part that has the open source community buzzing, the well-known and respected founder of the Castle Project Hamilton Verissimo has accepted a position with Microsoft’s MEF group.
0
kicks
Integrating Castle Windsor and NHibernate with WCF - Throwing the WCF
About integrating Castle Windows and NHibernate with WCF making use of Rhino tools
0
kicks
Really simple .NET remoting with Castle
Simplified calls to remote services are among the most useful features of the Java Spring framework. In .NET, I use Castle for the application framework wiring and I was looking for something similar — it turns out that the remote proxy calls are incredibly simple with Castle as well.
0
kicks
Dependency Injection in WCF Services Part 4
In this post, Javi shows how to apply parameter validation in WCF services using Castle WCF facility and the Enterprise Library Validation Block.
0
kicks
ActiveRecorditize your NHibernate Classes
Part 3 of RhinoCommons, NHibernate and ASP.NET MVC
Setting up the very simple model for use in our ASP.NET MVC application.
0
kicks
RhinoCommons, NHibernate and ASP.NET MVC Part 1
Using Rhino Commons, NHibernate and ASP.NET MVC for quick website development. Part 1 (Setting everything up)
0
kicks
Dependency Injection in WCF Services Part 3
After Javi explained in the first post these series the problems you may run into when applying Dependency Injection in your distributed service layer, and in the second one how to put the theory in practice using Castle Windsor WCF Facility, in this post Javi explains how to appy cross cutting con...
0
kicks
WPF + INotifyPropertyChanged Proxy = Epic Fail!
Sending property changed events when a property is changed is repetitive boilerplate code that can be factored out into an aspect of your system's behaviour. This can be done with a proxy generator library like the Castle's DynamicProxy2. Alas, it is not as pretty as it seems...