1
vote
2answers
262 views

Intercept the call to an async method using DynamicProxy

Below is the code from the Intercept method on a custom type that implements IInterceptor of the Castle Dynamic Proxy library. This snippet is from an AOP based logging proof-of-concept console app ...
1
vote
0answers
244 views

AOP with Castle Windsor

What I'm trying to achieve is AOP via attributes using Castle Windsor interceptors. I've had some success but having trouble with the aspects at the class level vs. the method level. If I use class ...
1
vote
1answer
349 views

Autofac + Castle DynamicProxy: Order of interceptors

I'm using Castle DynamicProxy with Autofac. I have an object for which I've created a proxy, and I have two interceptors that act on the proxy, one for logging an exception and the second for for ...
3
votes
2answers
714 views

ASP.NET MVC3 controller AOP proxy not intercepting all methods, only IController.Execute

I have a project with several layers - among them the web front end (ASP.NET MVC3) and the service back end (mainly business logic). The project is a few months old, so everything is working as ...
0
votes
2answers
84 views

Where can I find the most updated version of Castle DynamicProxy for .NET 2.0?

I'm stuck to a Visual Studio 2005 solution; is there still a way to do AOP in .NET 2.0 nowadays? I really can't find it on Google.
1
vote
1answer
183 views

method selector on one of many interceptors for a service registered in Castle.Windsor

Using Castle.Windsor, how would I go about adding a IProxyGenerationHook or selector for one of several interceptors defined for a specific service. For example consider the following component ...
2
votes
1answer
672 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 ...
1
vote
1answer
679 views

Performance advice for using Castle DynamicProxy in .NET web-apps

I am starting out with Castle DynamicProxy and I have this sample to track changes to properties of an object. Questions: Should I cache (in a static field) the ProxyGenerator() instance I use in ...
1
vote
2answers
822 views

Castle interceptors: How to add an interceptor to all registered types?

I'm registering several types one-by-one: container.Register( Component.For<IService1>().ImplementedBy<ServiceImpl1>(), ...
2
votes
1answer
403 views

Ninject: Possible to use injection constructor when type is being proxied for AoP?

I'm doing a project ground up using Ninject 2 and one question bugs me: If you are to intercept methods on your type, you need to wrap it into proxy (castle dynamic proxy to be specific). Unless said ...
1
vote
1answer
667 views

AOP with Autofac and DynamicProxy2

I'm using Autofac with DynamicProxy2 to intercept my classes like this builder.RegisterType<Calculator>().As<ICalculator>().EnableInterfaceInterceptors() ...
3
votes
4answers
1k views

What's the simplest way to intercept a method call for added functionality?

Suppose i have a repository that returns a list of Posts. The repository interface has a GetAll() method which does what it suggests. Now in keeping with the theory that i shouldn't be putting domain ...
0
votes
0answers
114 views

Castle Windsor ProxyGenerationException

I'm getting the following error trying to proxy an Interface (without target) that implements two different generic forms of the same generic interface. So, I have: public interface ...
1
vote
1answer
450 views

Need to intercept all LINQ-to-SQL entities with Castle Dynamic Proxy, perhaps with AutoMapper

I have a need to encrypt the value of a specific set of fields when stored in the DB. I am using LINQ-to-SQL. My approach: To transparently encrypt the value of the matching properties in the entity ...
0
votes
1answer
406 views

Castle DynamicProxy Interface Proxy Generation

I have a WindsorContainer. I have a ILazyComponentLoader (if it matters) and an Interface (ISomething) with an Interceptor attribute on in. [Interceptor(typeof(DynamicImplementationInterceptor)] ...
1
vote
1answer
297 views

Register multiple interceptors in castle windsor fluent

How do I register multiple interceptors using the fluent API?
1
vote
1answer
327 views

Can I specify to Castle Windsor which virtual methods to override in a class proxy?

I have many virtual methods in a class, but only one should be intercepted, Can I tell Castle Windsor to override only that method so I dont have to do validation in the Intercept method? Edit: I ...
0
votes
1answer
637 views

Is it possible to generate dynamic proxy for static class or static method in C#?

I am trying to come up with a way that (either static or instance) method calls can be intercepted by dynamic proxy. I want to implement it as c# extension methods but stuck on how to generate dynamic ...
1
vote
1answer
1k views

Caste Dynamic Proxy in Windsor Container

I've got a bit of a problem. I'm working in the Caste Windsor IOC Container. Now what i wanted to do is just mess about with some AOP principles and what i specifically want to do is based on a method ...
0
votes
2answers
683 views

Windsor Method interception (AOP)

I'm trying to create interceptors for specific methods but I'm having a hard time. I can't bind an aspect to a specific method. I create the faicilities most of examples show but it still doesn't ...
2
votes
1answer
719 views

Castle Windsor Interceptor for private/protected method

Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?
6
votes
2answers
874 views

Whats the difference between PostSharp and Castle Dynamic Proxy?

Just wondering what the main differences are between these libraries, how they differ in features and functionality. Hoping for more information than I could find with a Google query...
0
votes
2answers
570 views

Windsor MixIn is a Singleton?

I have a MixIn that requires some state to operate. I am registering it as so.. container.Register(Component.For(Of ICat) _ .ImplementedBy(Of Cat) _ ...
9
votes
2answers
2k views

Applying AOP

I've been using some basic AOP style solutions for cross-cutting concerns like security, logging, validation, etc. My solution has envolved around Castle Windsor and DynamicProxy. I've gone down ...