Tagged Questions

2
votes
2answers
34 views

logging- changing implementation?

We have been using log4net for logging our asp.net web forms application. Our logging is typically in our business layer and the typical implementation is like this SomeMethodCall(MethodParams) { …
0
votes
1answer
37 views

Please suggest some tutorial for learning pointcut expression

Please suggest some tutorial/cheatsheet for learning pointcut expression.
0
votes
0answers
22 views

handling multiple Aspects in AspectJ

I have a query, when im using multiple Aspects in my aop.xml. here's the problem. i have defined some <include> and <exclude> in my <weaver>. i have 3 aspects in my aop file. i need …
0
votes
0answers
13 views

What’s the best way to do AOP in Flex (loom)?

Would the best way to do AOP in Flex would be to use the Loom library? If so, I wasn't able to find adequate good documentation on Loom. Can you point out some places where there are good …
1
vote
2answers
94 views

Performance cost of Java dynamic proxy

Many modern frameworks (Spring, Hibernate) provide very nice dynamic behaviors with use of Java dynamic proxies, but what's the exact performance cost associated with it? Are there public benchmarks …
0
votes
1answer
35 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
0answers
65 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>() …
2
votes
1answer
51 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
41 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
240 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
73 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
95 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 …
5
votes
7answers
352 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 …
2
votes
2answers
87 views

Preprocessing C# - Detecting Methods

Hey, I require the ability to preprocess a number of C# files as a prebuild step for a project, detect the start of methods, and insert generated code at the start of the method, before any existing …
5
votes
1answer
85 views

What are the different methods for injecting cross-cutting concerns?

What are the different methods for injecting cross-cutting concerns into a class so that I can minimize the coupling of the classes involved while keeping the code testable (TDD or otherwise)? For …

1 2 3 4 5 14 next
15 30 50 per page