Uploaded image for project: 'EJB Client Library (AS7+)'
  1. EJB Client Library (AS7+)
  2. EJBCLIENT-295

[GSS](7.1.z) Annotated EJB Client Interceptor being called more than once

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 4.0.10.Final
    • 4.0.9.Final
    • None

    Description

      EJB Client interceptor handleInvocation and handleInvocationResult are being invoked 4 times instead of once. Reproducer attached uses @ClientInterceptors and the standalone client invokes the EJB once.

      @ClientInterceptors({ClientInterceptor.class})
      @Remote
      public interface TestRemote {
        public String invoke(String id);
      }
      
      @Stateless
      
      public class TestSLSB implements TestRemote {
        public String invoke(String id) {
          log.info("Test Invoked");
          return "" + context.getContextData().get(interceptorInvocationCounterKey);
        }
      }
      
      public class ClientInterceptor implements EJBClientInterceptor {
        @Override
        public void handleInvocation(EJBClientInvocationContext context) throws Exception {
          log.info("In the client interceptor handleInvocation : " + this.getClass().getName() + " " + context.getViewClass() + " " + context.getLocator());
          // Must make this call
          context.sendRequest();
        }
      
        @Override
        public Object handleInvocationResult(EJBClientInvocationContext context) throws Exception {
          log.info("In the client interceptor handleInvocationResult : " + this.getClass().getName() + " " + context.getViewClass() + " " + context.getLocator());
          // Must make this call
          return context.getResult();
        }
      

      Attachments

        Issue Links

          Activity

            People

              yborgess1@redhat.com Yeray Borges Santana
              yborgess1@redhat.com Yeray Borges Santana
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: