Tagged Questions
The unity-interception tag has no wiki summary.
3
votes
2answers
56 views
Transparent authorization reliability
I need a gear for custom authorization in business logic classes. It has to be permissions based system, but I can not decide how to apply authorization rules to methods.
My first thought was to ...
3
votes
2answers
295 views
Code based interception/logging configuration for Unity
Im using Unity as IoC container which works fine so far. Now I would like to use interception with a TypeMatchingRule and a LogCallHandler to log all calls to an interface IMyInterface. I'm ...
3
votes
2answers
604 views
Unity: Register two interfaces as one singleton with interception
I have a class that implements two interfaces, and I want to apply interception to the class's methods.
I'm following the advice in Unity Register two interfaces as one singleton, but I'm surprised ...
3
votes
1answer
233 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 ...
3
votes
2answers
892 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 ...
2
votes
2answers
83 views
Copying attributes to InterfaceInterceptor generated proxy
Suppose I have an interface exposed over WCF:
[ServiceContract]
interface IService
{
[OperationContract]
void Foo();
}
And an implementation:
[ServiceBehavior(...)]
class Service : ...
2
votes
1answer
127 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
0answers
956 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 ...
1
vote
0answers
46 views
How to make [HandlerAttribute]-based interception work on everything by default in Unity?
I want to use [HandlerAttribute]-based interception in my project (because it is slightly more obvious to the new developers). However I can't get it to work unless I explicitly specify new ...
1
vote
0answers
101 views
Specify policy for an interceptable type
Suppose I have the following code:
class Program
{
static void Main(string[] args)
{
IUnityContainer container = new UnityContainer();
container.AddNewExtension<Interception>();
...
1
vote
2answers
207 views
Unity Interception: How to pass parameter into ICallHandler implementation?
Can I pass message parameter to ICallHandler implementation like this:
var logic = container.Resolve<IBussinessLogic>(message);
And use it like this:
IMethodReturn ...
1
vote
2answers
242 views
Microsoft Unity: Interception not working when using BuildUp instead of Resolve
I am using Microsoft Unity 2.0 and the interception extension is not working as expected.
Consider these two lines of code:
...
0
votes
1answer
74 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
169 views
Interception with Unity in Prism v2 for WPF (not working for me)
I cannot get interception to work with Prism v2 (Oct 2009). I am trying to intercept the Setter for any Public Properties and then fire the PropertyChanged event if the property has changed. I can see ...