Custom NodeService Interceptor problem

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2007 08:27 AM
Alfresco version: 1.4.
I'm trying to intercept calls to NodeService to notify other parties of created/modified/etc content.
The problem is that I'm only getting addAspect calls with null values when new content is created from the web interface. What is expected is a createNode call!
Is the method of implementation right or should it be done differently?
br, Jani Askolin / Quosis Oy
The implementation follows:
I'm trying to intercept calls to NodeService to notify other parties of created/modified/etc content.
The problem is that I'm only getting addAspect calls with null values when new content is created from the web interface. What is expected is a createNode call!
Is the method of implementation right or should it be done differently?
br, Jani Askolin / Quosis Oy
The implementation follows:
modified public-services-context.xml fragment: <!– Node Service –> <bean id="NodeService" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="proxyInterfaces"> <list> <value>org.alfresco.service.ServiceDescriptor</value> <value>org.alfresco.service.cmr.repository.NodeService</value> </list> </property> <property name="target"> <ref bean="nodeService"/> </property> <property name="interceptorNames"> <list><!– quosis node service interceptor –> <idref local="NodeInterceptor" /> <idref local="NodeService_transaction"/> <idref local="AuditMethodInterceptor"/> <idref local="exceptionTranslator"/> <idref bean="NodeService_security"/> <idref local="NodeService_descriptor"/> </list> </property> </bean>And NodeInterceptor.java fragment:public class NodeInterceptor implements MethodInterceptor{ @SuppressWarnings("unchecked") public Object invoke(MethodInvocation invocation) throws Throwable { Object o = invocation.proceed(); System.out.println( "ALFRESCO NODESERVICE: "+invocation ); return o; }}
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 07:57 AM
Hi,
I don't see any NodeInterceptor bean defined. Was that an omission?
I don't see any NodeInterceptor bean defined. Was that an omission?
