- 
        1. Re: Communication Between Jboss7.1.1 and Hornetq2.2.13 Brokenjbertram May 22, 2017 10:18 AM (in response to hanumanthprasad)This problem was fixed years ago via HORNETQ-1314. It's also been covered on the forum before, for example on this thread. In general I recommend you try to stay on the latest version (or at least closer to the latest version). 
- 
        2. Re: Communication Between Jboss7.1.1 and Hornetq2.2.13 Brokenhanumanthprasad May 22, 2017 10:32 PM (in response to jbertram)Hi Justin Bertram, I have gone through links and found that the HornetQ 2.4.5.Final is recommended version to upgrade for this issue. I have not done HornetQ upgrade before with jboss7.1.1. I will be more happy, if you share related links or information about the upgrade of HornetQ 2.4.5 from HornetQ 2.2.13.Final for Jboss7.1.1 Regards, Hanumanth 
- 
        3. Re: Communication Between Jboss7.1.1 and Hornetq2.2.13 Brokenjbertram May 22, 2017 11:03 PM (in response to hanumanthprasad)I believe there is a work-around based on a configuration change discussed on the thread I linked. As far as upgrading HornetQ within JBoss AS 7.1.1.Final, I'm not sure that's possible. If you want to upgrade then I suggest you move to a later version of JBoss AS or even Wildfly which has the version of HornetQ (or Artemis) which you need. 
- 
        4. Re: Communication Between Jboss7.1.1 and Hornetq2.2.13 Brokenhanumanthprasad May 23, 2017 2:28 AM (in response to jbertram)Hi Justin Bertram, From shared thread , I have found work around Try these settings on the MDB to disable connection checking, add the following annotations: @ActivationConfigProperty(propertyName = "clientFailureCheckPeriod", propertyValue = "600000") @ActivationConfigProperty(propertyName = "connectionTTL", propertyValue = "-1") Please confirm whether we can do similar configuration at server level(standalone.xml) or annotations at MDB level is ideal approach. <jms-connection-factories> <connection-factory name="InVmConnectionFactory"> <connectors> <connector-ref connector-name="in-vm"/> </connectors> <entries> <entry name="java:/ConnectionFactory"/> </entries> <connection-ttl>-1</connection-ttl> <client-failure-check-period>600000</client-failure-check-period> </connection-factory> ----- </jms-connection-factories> Regards, Hanumanth. 
- 
        5. Re: Communication Between Jboss7.1.1 and Hornetq2.2.13 Brokenjbertram May 23, 2017 9:16 AM (in response to hanumanthprasad)If you're using MDBs then annotation would be the preferred approach. However, if you have in-vm clients using the in-vm connection factory (i.e. looking up "java:/ConnectionFactory" in JNDI) then you can use the XML approach. By default MDBs use configuration elements from the JmsXA pooled-connection-factory so you might be able to add <connection-ttl> and <client-failure-check-period> to that, but I haven't tested that approach. 
 
    