1 Reply Latest reply on Nov 16, 2012 3:46 AM by caraldel

    Test fails depends of jboss-remoting version

    caraldel

      I have some test packages. If I put the maven dependency to jboss-remoting:3.2.10GA.jar I pass all the test packages but in one of them It stands a while and at end finish with this error:

       

      INFO: EJBCLIENT000016: Channel Channel ID e9770cd9 (outbound) of Remoting connection 01053693 to /147.156.223.142:4447 can no longer process messages

      EJBCLIENT000025: No EJB receiver available for handling

       

       

      But if I change the dependency to jboss-remoting:3.2.11 or 12 GA.jar this failed test pass but other passed test not pass at this time with the same error that exits before.

       

      What is happening ? My configuration is: test in standalone client localhost and try to pass connecting to a remote statless ejb in cluster (2 memebers).

       

      Thanks.

        • 1. Re: Test fails depends of jboss-remoting version
          caraldel

          I solved this issue. I put in the waven dependencies this:

           

          <dependency>

                                                       <groupId>org.jboss.as</groupId>

                                                       <artifactId>jboss-as-ejb-client-bom</artifactId>

                                                       <version>7.1.2.Final</version>

                                                       <type>pom</type>

                                                       <scope>compile</scope>

                                             </dependency>

           

          and it works fine.