1
vote
2answers
210 views

Unity ICallHandler vs. IInterceptionBehavior

It almost seems like Unity is providing 2 different routes to achieve AoP functionality. The question is why? What are the differences? What would be the pros and cons of each approach? For example ...
1
vote
1answer
76 views

Interception of ViewModels in Silverlight

I have a lot of ViewModels in an App and most of them are declared and referenced as Static Resources in the XAML of the Views. Now I need to implement some comprehensive logging of ViewModel ...
2
votes
1answer
187 views

Unity Intercepting (AOP) nested virtual properties

I've recently started using interception in the Unity application block and have an perplexing problem with attempting to get nested properties to alert that they have been changed from within the a ...
0
votes
0answers
140 views

Unity Interception using auto wiring

I got Unity interception working using a HadlerAttribute and an instance of ICallHandler. To get it working all I have to do is decorate the class with the [Trace] attribute, and the interceptor works ...
0
votes
1answer
265 views

Unity intercept change call handler based on method annotation

I have a method in a class as follow that I want to intercept: [CustomTag1(Order = 0)] [CustomTag2(Order = 1)] public virtual DoSomething() How can I inject the order value into ICallHandler.Order ...
1
vote
1answer
173 views

Full stack trace missing when using Unity as AOP framework

I noticed that when using Unity as AoP framework, particularly VirtualMethodInterceptor + CallHandler. The stack trace I got does not include the original code. Instead it has a xxx_wrapper_yyyy type ...
1
vote
2answers
270 views

How to Intercept and cancel method execution

Is there a way to intercept a method execution and cancel it? I've only found a way to do it throwing an exception from the Invoke method using Microsoft.Practices.Unity and ICallHandler, but on the ...
2
votes
3answers
123 views

Online-Offline Class Manager

Ok, first I'll describe my goal, then what I've coded, finally questions. Goal To have a generic class that manage multiple contracts that , and is able to find out wheter it's an online or offline ...
2
votes
1answer
172 views

Full stacktrace not being return when intercepting a method using Microsoft Enterprise Library Unity

I'm working with an application which is using Unity (v2.0) as part of Microsoft Enterprise Library. It is set up so you can add an attribute to the top of a method, and something will be done ...
0
votes
1answer
108 views

How do I register an interception injection for interfaces which inherit a marker interface?

For example I would like to call the following code to register a whole set of services which I want to inject a policy for: container ...
4
votes
1answer
381 views

How to configure a logging interceptor for all registered type in Unity?

I am going to trace every actions happened in the services which are managed by the Unity Container as logs in file system. I suppose I could define an interface named IService and all the other ...
0
votes
1answer
154 views

Questin About use unity for AOP

IUnityContainer Container = new UnityContainer(); Container.RegisterType<MyService>(); container.AddNewExtension<Interception>() .Configure<Interception>() ...
1
vote
1answer
240 views

Logging in the winform application using AOP and proxies

Let's move to details. For example I have a class and logic named ImportAction. This class has some public and private methods. I invoke some methods. In these methods I instantiate other classes ...
0
votes
1answer
98 views

How to configure the NamespaceMatchingRule(IEnumerable<MatchingInfo>) in unity 2.0 xml configuration file?

How should I pass the IEnumerable<MatchingInfo> to one of the overloaded constructor of the NamespaceMatchingRule using the unity 2.0 configuration file?
1
vote
1answer
576 views

How do I configure Unity 2.0 Policy Injection to use custom attribute matching rule in configuration file?

How do I configure Unity 2.0 Policy Injection to use custom attribute matching rule in configuration file? What I want is to translate the following code snippet in the unity configuration file. ...
0
votes
1answer
861 views

WCF service not interceptable using Unity 2.0 Interception

In my WCF web application I have configured the Unity container for Interception. Following is my unity configuration. <unity xmlns="http://schemas.microsoft.com/practices/2010/unity"> ...
5
votes
2answers
871 views

Unity - Interception for a WCF service class?

i have a client & server application which communicate using WCF. To add some custom session information to each WCF message header i wrapped the client WCF channel into a "ClientChannelProxy" ...
1
vote
1answer
2k views

AOP, Unity, Interception of method

I have just started using Unity and the interception capabilities. I created a prototype to verify the limitation or capabilities and it seems to me that in order to intercept a method there are ...
3
votes
3answers
167 views

Combining Dependency Injection and dynamic Aspect Weaving

For DI I'm using Microsoft's Unity. For dynamic Aspect Weaving I'm using Rapier-LOOM. The aspect weaver requires me to instantiate woven objects using the factory method ...
1
vote
1answer
380 views

Unity does not intercept WCF Service calls

I have a WCF service and I want to intercept the method CreateOrder whenever it is called : [ServiceContract] public interface IOrderService { [OperationContract] ...
2
votes
1answer
292 views

Is interception worth the overhead it creates?

I'm in the middle of a significant effort to introduce NHibernate into our code base. I figured I would have to use some kind of a DI container, so I can inject dependencies into the entities I load ...
2
votes
1answer
425 views

Unity: Interception (AOP) intercepting Properties? and also intercepting methods on a form (winform)?

i am very interested in finding out if its possible to intercept Properties as well as Methods? I found a great example and seems to support intercepting Methods, would it also be possible to ...
2
votes
1answer
395 views

Using Unity 2.0 handle exception

When I use Unity 2.0 to handle exception, I got some problem, like below: public class TraceBehavior : IInterceptionBehavior { public IEnumerable<Type> GetRequiredInterfaces() { ...
2
votes
2answers
2k views

How to configure Unity 2.0 at runtime to intercept INotifyPropertyChanged?

http://msdn.microsoft.com/en-us/library/ff660851(v=PandP.20).aspx provides a sample of how to implement IInterceptionBehavior to add INotifyPropertyChanged support. What the sample does not include is ...
1
vote
1answer
678 views

How do I add a tracing interceptor for all classes within Prism?

I am trying to add a tracing interceptor to all the components of my Prism application using an interface interceptor. I almost have this working however the interceptor is having problems with ...
1
vote
1answer
1k views

Intercept Unity 2.0 HandlerAttribute without an interface

I'm a first-time user of the AOP features of Unity 2.0 and would like some advice. My goal is to be able to log method calls in an ASPX page, like so: public partial class Page2 : Page { ...
3
votes
1answer
327 views

Intercepting child method calls using Unity

Using PIAB / Unity, is it possible to intercept "child" method calls ? e.g. the class has three methods ... DoSomething(), DoFirst(), DoSecond() The DoSomething() method calls DoFirst() which in ...
0
votes
1answer
242 views

measuring method execution time using Unity interception

Do you know a pattern for method execution time measurement using EntLib's Unity and its interception mechanism?
0
votes
1answer
664 views

Unity 2.0 and policy injection in .config

I want to use unity (2.0) to resolve my dependencies in a way so that i can configure policy injection (policies, matching rules and call handlers) in the .config file. Or an other way to put it; i ...
3
votes
1answer
274 views

how to unit test AOP?

i'm using Unity to do AOP, could someone give me some idea how to unit test them?
4
votes
2answers
2k views

AOP interception attribute

So, i have this problem, and no one seems to be able to help. So rather than keep bashing away i'm going to throw it out there for alternative ways to skin this particular cat. I currently have the ...
0
votes
1answer
1k views

Unity IOC, AOP & Interface Interception

I've been playing around with Unity to do some AOP stuff, setting up via IOC like: ioc.RegisterType<ICustomerService, CustomerService>() ...
0
votes
1answer
381 views

Why is this method call not getting intercepted?

Why doesn't DoIt() method call get intercepted? Should I use something other than InterfaceInterceptor to intercept the DoIt() method? How would you do it? using System; using ...
1
vote
2answers
1k views

Aop, Unity, Interceptors and ASP.NET MVC Controller Action Methods

Using log4net we would like to log all calls to our ASP.NET MVC controller action methods. The logs should include information about any parameters that were passed to the controller. Rather than ...
1
vote
2answers
4k views

How to use interception with WCF and Unity

I have a WCF service that is setup to be hosted within a unity container. I was intending to use this container to perform method interception. The problem is I cannot get my interceptor to fire... ...
3
votes
0answers
1k views

Getting real instance from proxy under Unity Interception with NHibernate

I'm using Unity to resolve types dynamically for a pluggable architecture. I'm also using interception to apply business rule validation via AOP (using ValidationAspects). Finally, I'm using ...