0 Replies Latest reply on Mar 5, 2014 4:00 AM by suikast42

    Remote class loading with Wildfly 8.0.0.Final

    suikast42

      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 ??