Dear Community,
I have the following setup at a Server:
Is it possible to implement this in Spring's Remoting in a way that the method "doSomethingOnServer" will be executed at the server like in a UnicastRemoteObject in RMI if I call this at the client?
Thanks in advance
Fynn
I have the following setup at a Server:
Code:
interface Loader
{
ReferencedObject getObject()
}
class IsNotSerializable implements ReferencedObject
{
public void doSomethingOnServer()
{
}
}
Thanks in advance
Fynn