Tagged Questions
0
votes
0answers
179 views
Creating instances from open generic types and wrapping them in proxies
This is the requirement: use AOP to add logging to an application that may create many different observables (meaning Rx or Reactive Framework IObservable and ISubject<T> specifically ). In ...
0
votes
0answers
115 views
Spring.Net AOP PointCut issue
We have a requirement where we need to log the usage statistics for our reports. We used two approaches:
Using ObjectNameAutoProxyCreator, we listed all reports that we need to track the usage of.
...
2
votes
2answers
465 views
Exception Handling : AOP vs Classic Handling?
I'm working on a Plugin Loading Engine (.NET), its main roles are :
Loading Plugins
Connecting them to the appropriate Data Source
Launching the Plugins
Displaying the results
All the plugins ...
0
votes
1answer
182 views
Problems invoking custom attribute from AOP advice
I have an Advice, and a custom attribute on it. I want to apply the attribute on another method called from advice class that. But the attribute does not get invoked.
My spring config looks pretty ...
1
vote
1answer
280 views
Configuring NHibernate to work with Spring.NET AOP Proxy objects
I'm using Spring.NET AOP to determine when a C# persistent object has change any of its properties (per Spring.AopQuickStart.Step6.2010 in Spring.NET/examples), but I'm getting a MappingException - No ...
1
vote
1answer
63 views
Subclass proxies in Spring.NET
Is it possible to create subclass proxies in spring.net where the proxy is the same instance as the proxied subject?
As far as I can tell, spring.net only allows proxying as a separate object.
That ...
1
vote
2answers
392 views
How to Define Thread-scoped objects with DefaultAdvisorAutoProxyCreator in Spring.NET
I want to create a thread-local object (with interceptors) using DefaultAdvisorAutoProxyCreator. I know how to do that using ProxyFactoryObject:
<?xml version="1.0" encoding="utf-8"?>
...
2
votes
1answer
318 views
Does Spring.NET Support Creating Custom Object Lifetimes?
In the book Dependency Injection in .NET, the author says that Spring.NET doesn't support creation of custom object lifetimes (See last paragraph of section 12.2 [Managing lifetime]).
Even though I ...
0
votes
1answer
386 views
How to Define Prototype Interceptors with DefaultAdvisorAutoProxyCreator in Spring.NET
I am new to Spring.NET and am just playing around trying different things out. As part of my testing, I created a simple object:
public interface ICommand {
void Execute(object context);
}
with ...
1
vote
1answer
516 views
Does Spring.NET [Transaction] attribute support multiple transaction managers?
I've been using Spring.NET declarative Transaction management for some time in a code base that uses IBatis in conjunction with the TxScopeTransactionManager. I just added Spring.NET NHibernate ...
3
votes
1answer
232 views
Why are pure inheritance based proxies bad in AoP
I have a problem making method calls between methods in same class and having transaction advice apply.
Spring Framework .NET documentation states that it supports compositional and inheritance based ...
1
vote
1answer
574 views
Best way for logging exceptions in Spring.NET with Log4net or nlog
I would like to know which way of log exception in Spring.NET is prefered and why.
I found two common scenarios.
1.Use IThrowAdvice.
I created throws advice and in method AfterThrowing handle / log ...
1
vote
2answers
341 views
Handle with exception on auto proxy / proxy factory object
I start learning Spring.NET framework and I am very confusing with behavior of proxy, auto-proxy and exception handling.
for example I defined simple business object and from this object I will ...
3
votes
1answer
400 views
Spring.NET.AOP - ExceptionHandlerAdvice doesnt replace custom exception
this is my first and also I am beginner in Spring.NET and also AOP.
I would like use Aspect for Exception Hadling for replacing, wrap and modify my custom exceptions.
First I defined some entity ...
1
vote
1answer
2k views
Spring.net Logging Example using aop
I'm learning Spring.Net and am trying something simple, which is not working. I want to log any method calls decorated with LogCall
namespace WpfApplication1
{
public partial class MainWindow : ...
0
votes
1answer
225 views
Lazy-load collection with Spring.Net
I use Spring.Net in my project for dependency injection. Now I want to use it also for lazy-loading my objects properties.
This is an example:
I use:
CustomerDao to access database ...
6
votes
1answer
505 views
C# and AOP - AOPAlliance (Aspect-oriented programming) how does this work
I just had a very interesting experience with AOP in C#. I have a function with a return type List which is being intercepted and that's all well and good. However the interceptor function is a ...
2
votes
1answer
628 views
How to exclude method from the transaction advice?
I have the following declaration:
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*"/>
</tx:attributes>
...
1
vote
2answers
646 views
Spring AOP + MVVM Foundation + PropertyChanged
I'm using Spring.Net 1.3.1 alongside MVVM Foundation to apply cross-cutting to my viewmodels. I've noticed that if I assign a property changed handler before the object is converted to a proxy for ...
1
vote
1answer
480 views
Spring.net AOP seems to interfere with WPF Databinding
I have updated my project with the Spring.net Dependency Injection Framwork. Then I continued with integrating AOP to enable a simple logging/trace mechanism. I had some problems with a circular ...
1
vote
1answer
387 views
Getting Microsoft test framework to use Spring.Net to create test classes
I have a project using .Net 4.0, VS 2010 and Spring 1.3. Before and after each of my Integration tests run, I want to be able setup and clean up some data for the test. I was thinking of using custom ...
0
votes
2answers
563 views
spring.net transaction attribute works only for methods called from outside
In have a service class configured with Spring.NET.
DoWork accomplsihes two tasks which should run in two transactions. But Spring.NET seems not invoke any transactional AOP behaviour. I must annotate ...
3
votes
2answers
945 views
Asp.Net MVC Controller: declarative AOP with Spring.Net
Is it possible, that Spring.Net Aspects don't work with Asp.Net Controller?
I want to configure transactions on Action methods of Controllers but the proxy doesn't seem to trigger.
<object ...
1
vote
2answers
255 views
Spring.Net Before Advice not working
I am trying to implement a very basic before advice with Spring.Net, that just prints some information to the console. Here is the relevant part of the spring config:
<!-- Before Advice: Method ...
0
votes
1answer
400 views
spring.net proxy factory with target type needs property virtual?
I'm creating spring.net proxy in code by using ProxyFactory object with ProxyTargetType to true to have a proxy on a non interfaced complex object.
Proxying seems ok till i call a method on that ...
2
votes
2answers
2k views
Can Spring.Net function as PostSharp?
A few months back I've discovered PostSharp, and for a time, it was good.
But then legal came back with an answer saying that they don't like the licence of the old versions. Then the department told ...
4
votes
1answer
1k views
How to configure RetryAdvice and ExceptionTranslation for Deadlocks using NHibernate and Spring
i am using Spring.net 1.2 with NHibernate 2.0.1.
Within my project i'am facing some Deadlock issues and besides the database tweaks to minimize the occurence i would like to implement Springs ...
1
vote
1answer
298 views
Spring.NET does not use AOP AfterReturningAdvice
I am trying to use Spring.NET AOP in my project for logging purpose, and two advices work great, however, the third does not get used at all.
Here is my wiring:
<!-- the "After" Advice -->
...
2
votes
0answers
400 views
Spring.NET & Constructor Interceptors
I'm trying to do some AOP over objects at construction time, and found IConstructorInterceptor, which would be perfect for what I want but it doesn't appear to work (in version 1.2 at least).
I've ...
0
votes
2answers
648 views
Should I use Spring.Net AOP Throws advice?
Background
I have a component that provides certain CRM services - specificCRM. I have a specificCRMAdapter which implements my IGeneralCRM interface.
Another component generalCRM exposes CRM ...
2
votes
3answers
508 views
Injecting advice to a recursive method in Spring.Net?
I'm trying to use Spring.NET's support for AOP to do dependency injection/inversion of control/aspect-oriented programming (sorry for the slew of buzzwords - maybe I'll post a separate question asking ...
