Revision: 1218 http://openutils.svn.sourceforge.net/openutils/?rev=1218&view=rev Author: fgiust Date: 2009-05-24 10:38:26 +0000 (Sun, 24 May 2009) Log Message: ----------- remove call to removed method Modified Paths: -------------- trunk/openutils-spring-rmibernate/src/main/java/it/openutils/spring/rmibernate/server/exporter/HibernateRmiServiceExporter.java Modified: trunk/openutils-spring-rmibernate/src/main/java/it/openutils/spring/rmibernate/server/exporter/HibernateRmiServiceExporter.java =================================================================== --- trunk/openutils-spring-rmibernate/src/main/java/it/openutils/spring/rmibernate/server/exporter/HibernateRmiServiceExporter.java 2009-05-24 10:34:33 UTC (rev 1217) +++ trunk/openutils-spring-rmibernate/src/main/java/it/openutils/spring/rmibernate/server/exporter/HibernateRmiServiceExporter.java 2009-05-24 10:38:26 UTC (rev 1218) @@ -21,7 +21,6 @@ import org.hibernate.SessionFactory; import org.springframework.aop.framework.ProxyFactory; import org.springframework.remoting.rmi.RmiServiceExporter; -import org.springframework.remoting.support.RemoteInvocationTraceInterceptor; import org.springframework.util.ClassUtils; @@ -48,10 +47,6 @@ checkServiceInterface(); ProxyFactory proxyFactory = new ProxyFactory(); proxyFactory.addInterface(getServiceInterface()); - if (isRegisterTraceInterceptor()) - { - proxyFactory.addAdvice(new RemoteInvocationTraceInterceptor(getExporterName())); - } // add interceptor for lazy work proxyFactory.addAdvice(new HibernateLazyRmiInterceptor(sessionFactory)); proxyFactory.setTarget(getService()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |