0
votes
2answers
78 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...
1
vote
3answers
109 views
incompatible types found: required: default enums in annotations
[javac] C:\ws\galileo\test\Cacheable.java:13: incompatible types
[javac] found : com.io.CacheType
[javac] required: com.io.CacheType
[javac] public CacheType id() default CacheType.COMMON;
I …
0
votes
1answer
18 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 …
5
votes
7answers
325 views
Patterns for functional, dynamic and aspect-oriented programming
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in the web on this …
0
votes
2answers
144 views
Policy Injection with ASP.NET MVC Controllers
I'm running into an issue with the Policy Injection Application Block from Enterprise Library in conjunction with ASP.NET MVC.
In my ControllerFactory, I'm creating the controller and then calling …
1
vote
2answers
511 views
Accessing HttpServletRequest from AOP advice in Spring 2.5 with annotations
Hi All,
I have tried to find the answer to this question on both the Spring forum and by searching StackOverflow. I have found a lot of pages describing horrible architectures and asking for about …
0
votes
0answers
42 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
2answers
24 views
JBoss Microcontainer + AOP in a standalone app
Hi everyone,
I'm trying to create a standalone app using JBoss Microcontainer for IoC and JBoss AOP for, well, AOP.
I've boot-strapped, deployed a descriptor with AOP XML, so far so good.
But the …
12
votes
8answers
3k views
How do I intercept a method call in C#?
For a given class I would like to have tracing functionality i.e. I would like to log every method call (method signature and actual parameter values) and every method exit (just the method …
5
votes
7answers
465 views
What ever happened to Aspect Oriented Programming?
I remember in the early 2000's late 90s Aspect Oriented Programming was supposed to be the "Next Big Thing". Nowadays I see some AOP still around but it seems to have faded into the background.
2
votes
1answer
38 views
Is it possible to catch / handle exceptions thrown from a Grails controller? Aop?
class MyController {
def myAction = {
throw new MyException("Test")
}
}
Is it possible to catch / handle the exception thrown by the code above? The following url-mapping kinda works, …
0
votes
2answers
31 views
How to convert an exception to another one using PostSharp?
I would like to automagically add the following code around the body of some methods:
try
{
// method body
}
catch (Exception e)
{
throw new MyException("Some appropriate message", e);
}
I am …
0
votes
4answers
231 views
How to get this really fast?
I have a framework that allows users to do queries to a specific datasource (the Football Manager 2010 ingame database, for those of you interested).
In this framework, I have two different modes …
1
vote
2answers
60 views
Reduce PostSharp compile time overhead
We recently introduced PostSharp into our code base and the compile time of our ASP.NET MVC project has doubled to quadrupled. We have about 3 MVC projects and approximately 8 class library projects …
4
votes
2answers
91 views
Dependency Injection - Who owns the Interface?
Assuming I want to use a dependency injection framework in an AOP approach, with the goal of producing code modules. What's the best practice for the ownership of the shared interfaces? By ownership …
