I have the following configuration:
<jaxws:endpoint id="MyService"
implementor="#ws.MyServiceBean"
address="/MyService_v1"
endpointName="simple:MyService_v1"
serviceName="simple:MyService" />
implementor is declared as follows:
<bean id="ws.MyServiceBean"
class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<list>
<value>ws.MyService</value>
</list>
</property>
<property name="interceptorNames">
<list>
<value>ws.ExceptionTranslatingInterceptor</value>
</list>
</property>
<property name="target" ref="ws.MyServiceBeanV1_Impl" />
</bean>
Somehow, interceptor on Spring AOP declaration of the proxy is not
getting invoked.
Any ideas ? Is there something special involved when implementer is a proxy ?
Thanks,
Alex.