We are using Spring core 2.0.2. Is there a compatible release of Spring-ws for the 2.0.2 release of core? I tried using 1.0.x, but got several errors on container startup.
I looked at the source...
Type: Posts; User: icechunk; Keyword(s):
We are using Spring core 2.0.2. Is there a compatible release of Spring-ws for the 2.0.2 release of core? I tried using 1.0.x, but got several errors on container startup.
I looked at the source...
So how can I enable transactions in BaseManagerImpl and inherit that in the ChildManagerImpl? Seems like the solution is to wrap each Manager (child AND Base) into a transaction interceptor.
But the BaseManagerImpl class doesn't have a setTransactionManager() method either. If I can set that up, why not the ChildManagerImpl?
I have my transaction manager setup correctly
bean id="txProxyTemplate" abstract="true" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
...