Hi, I've also come to the same solution. The service should return an rmi proxy stub and not a spring stub anymore. To obtain this, your interface service should extend java.rmi.Remote and the...
Type: Posts; User: msepehr; Keyword(s):
Hi, I've also come to the same solution. The service should return an rmi proxy stub and not a spring stub anymore. To obtain this, your interface service should extend java.rmi.Remote and the...
Hi,
In my current application project, a singleton is used to get the Application Context instance (new ClassPathXmlApplicationContext(files)).
Some new functions require simultanous access the...
Hi Marten,
Thanks for your reply. Indeed, i resolved it with Around Aspect:
@Aspect
public class ExceptionAround {
@Around("execution(* com.services.*.*(..))")
public int...
I have a case where i need to intercept an exception AND then return an int.
I can add an aspect with an after-throwing that does the first job.
I can add an after-returning when the join point...
For information, the answer is : yes, it is possible.
The interface service should extend java.rmi.Remote and the implemented service should extend java.rmi.server.RemoteObject. Thus, the service...
Hi ryester,
I think pmbh needs a non-spring client and HttpInvokerProxyFactoryBean is part of spring remoting httpinvoker
Hi,
i have server running with RMI spring-remoting 2.5.6
<bean id="hellloServerServiceExporter" class="org.springframework.remoting.rmi.RmiServiceExporter">
<property name="serviceName"...