2 Replies Latest reply on Aug 27, 2007 5:40 PM by eric2

    InvalidationBridge

    eric2

      I have two jboss instances (4.0.5.GA) running on one box. It's a multihome nic card, i just created a dummy0 interface and I bind jboss to each of the IP addresses. Everything seems to work fine; however, I get this error on both servers.

      ERROR [URLDeploymentScanner.scan()]: Incomplete Deployment listing:

      --- MBeans waiting for other MBeans ---
      ObjectName: jboss.cache:service=InvalidationBridge,type=JavaGroups
      State: CONFIGURED
      I Depend On:
      jboss:service=DefaultPartition
      jboss.cache:service=InvalidationManager

      --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
      ObjectName: jboss.cache:service=InvalidationManager
      State: NOTYETINSTALLED
      Depends On Me:
      jboss.cache:service=InvalidationBridge,type=JavaGroups


      Am I doing anything wrong? What are the effects of this error?

        • 1. Re: InvalidationBridge
          brian.stansberry

          The jboss.cache:service=InvalidationBridge,type=JavaGroups service provides cluster-wide invalidation of EJB2 entity bean caches. If you're not using EJB2 entity beans you don't need this service and can comment out or remove the mbean at the bottom of the deploy/cluster-service.xml file.

          The problem is occuring because the jboss.cache:service=InvalidationManager service is not present. That's deployed in the deploy/cache-invalidation-service.xml file. Perhaps you removed this file because you weren't using EJB2 entities?

          • 2. Re: InvalidationBridge
            eric2

            thanks