0
votes
0answers
63 views

Is it possible to change return type when intercepting a method?

I'd like to treat mapping of data access objects to domain objects as a cross cutting concern and solve the problem using AOP (Aspect Oriented Programming). What I like to do is intercept the ...
0
votes
0answers
141 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 ...
2
votes
1answer
249 views

Writing interceptors for parameter annotations using Guice

Main References for My Question: Writing Method Interceptors for Google Guice: http://code.google.com/p/google-guice/wiki/AOP The JavaDoc for the MethodInterceptor interface: ...
0
votes
1answer
115 views

ninject interceptor - helper methods

I have a simply interface: public interface ITest { void Method1(); void Method2(); } and implementation: public class Test:ITest { public void Method1() { } ...
0
votes
0answers
60 views

Intercept Hessian remote call to add information

I suppose this might not be possible but just in case... We have a frontend Java application that communicates with a (ours as well) backend application through Hessian. For logging and auditing ...
0
votes
1answer
270 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 ...
0
votes
0answers
266 views

C# (AOP) Method Interceptor

I have lots of web service methods and I want to validate all of them in one function. For example; [Intercept] public string Method1(POS pos, int param1, string param2) { return ...
1
vote
2answers
274 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
124 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
173 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 ...
2
votes
1answer
243 views

Can ejb interceptors change the return value of a method before the calling class gets it?

If we have code in the field that has a method that another product calls, and gets a list of objects back. And we need to make changes to the code to make it more flexible in populating the list to ...
1
vote
1answer
348 views

BookMark Redirection using AOP-Spring interceptor

I was trying to write an interceptor using spring AOP.The interceptor will find if a request URL is a bookmark,if so will redirect to the authentication page. Code Snippet: public Object ...
4
votes
2answers
448 views

Ninject Interception - breaking changes when porting to Ninject 3.0

I will describe my environment: I have Ninject + Ninject Interception Extension working to enable auto registration of interceptors for all methods, marked with a special attribute. It is a common AoP ...
1
vote
1answer
339 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 ...
0
votes
2answers
235 views

Castle Windsor Interceptor on Caliburn View Model

I would like create own aspects with Castle Windsor Interceptor and apply on View Model classes. As I said I use Caliburn MVVM framework and on DI I use Caste Windsor. Everything works good. For ...
2
votes
1answer
248 views

Intercepting methods called by the Startable facility with Castle Windsor 3.0

I'm using Castle Windsor 3.0. I have a component that should be started automatically after the registration phase. I would also like to intercept exceptions coming from it's Start/Stop methods and ...
3
votes
1answer
450 views

How to define order of method interceptors in Guice?

Sometimes there's a need to know the order of method interceptors that intercept a method call in Guice. A simple example scenario would be to use guice-persist provided @Transactional method ...
2
votes
1answer
229 views

intercept method line by line

in c#, is there any practicable way to intercept a method line after line, at run-time? the specific application of interest would be dynamic logging: if something within a method body threw an ...
1
vote
1answer
177 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 ...
0
votes
1answer
689 views

Issue with Spring Method interceptor

I'm having an issue with using Spring interceptor. I've a CXF service endpoint method which I'm trying a wrap with an interceptor to do some initialization. For some reason, the interceptor is not ...
0
votes
1answer
455 views

Problem with spring aop. How to be sure that interceptor is invoked after commit?

I use spring 3.0.5 and with hibernate. Interceptor is working. Send domain id to jms queue. Consumer recive it and search domain, but is faster than database commit and i get null. How to be ...
0
votes
2answers
205 views

CDI interceptors and memcache

I was reading about interceptors and AOP, the way they can unclutter your code and externalize cross-cutting concerns into aspects. I instantly thought of CDI and the use of custom interceptors to ...
1
vote
2answers
404 views

What is the best way to have interceptors for POJO?

EJB 3.0 comes with the concept of Interceptors, but then again they are applicable to EJBs only. My project requires developing Interceptors for POJO classes. One option for this is to use Spring AOP. ...
1
vote
2answers
800 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>(), ...
1
vote
1answer
4k views

Get Java EE 6 interceptors working (Weld on GlassFish 3.1)

I'm working on a project where I want to use Interceptors to log usage of a ManagedBean. As I read in the specs and in many examples it should be possible with the current CDI implementations. The ...
2
votes
1answer
394 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 ...
0
votes
3answers
1k views

How to intercept the onSuccess() method in GWT

I need to do method interception for the onSuccess method in GWT. I need to add some code before and after the calling of the onSuccess method in GWT? (I have many calls to the onSuccess method and I ...
2
votes
1answer
1k views

How to intercept static methods in Spring?

Subject line basically says it all. I have a static method I want to intercept so that around advice can be applied to it. I can get this to work with any non-static methods but I'm unsure how to ...
0
votes
1answer
576 views

Performance with Castle Windsor Interceptors

As suggested by many, logging is better managed through AOP, and in my case, using Castle Windsor interceptors. I am currently developing a web app and we just added an interceptor to log every ...
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 ...
1
vote
1answer
296 views

Register multiple interceptors in castle windsor fluent

How do I register multiple interceptors using the fluent API?
3
votes
1answer
414 views

Is is possible to intercept a static method on an object you don't own and did not create?

Referring to my possible answer to this question: http://stackoverflow.com/questions/2907535/how-would-you-audit-asp-net-membership-tables-while-recording-what-user-made-the/2911616#2911616 Is it ...
1
vote
1answer
325 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 ...
2
votes
1answer
713 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?
0
votes
1answer
806 views

Session objects into Seam Interceptors

once more i'm here asking help on seam subject. Currently we have the following interceptor for audit @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) ...
5
votes
2answers
1k views

How can I intercept execution of all the methods in a Java application using Groovy?

Is it possible to intercept all the methods called in a application? I'd like to do something with them, and then let them execute. I tried to override this behaviour in Object.metaClass.invokeMethod, ...