Let's assume that I have a remote ejb interface look like shown below:
@Remote public interface ControllerService{ void excecute(IService service); }
So the idea is that I can "inject" logic in my backend. The client should implement a logic and the server should execute it only.
But this works only for implementations that the server knows.
Is that possible to load the class from the client ??