4 Replies Latest reply on Oct 14, 2004 8:51 AM by kesara

    JBoss + KaRMI

    sysuser1

      Hi,

      Does anyone have experience with integrating JBoss 3.0.8 and KaRMI? We're planning to try KaRMI for performance reasons and would appreciate any input on the best way to do it. From what I gather, it should be a matter of dropping the jar in lib and changing the imports, or is there more to it than that?

      Thanks in advance,
      Anu.

        • 1. Re: JBoss + KaRMI
          sysuser1

          It seems there IS more to it than just that.

          What the actual requirement is to modify JBoss to use KaRMI instead of its own implementation. Has anyone undertaken such a task? Is the RMI implementation in JBoss pluggable? Would appreciate any input on the best way to go about doing this.

          TIA,
          Anu.

          • 2. Re: JBoss + KaRMI
            fbiaggi

            Look in the documentation about using RMI compression

            • 3. Re: JBoss + KaRMI
              starksm64

              Read about detached invokers in the online admin and devel guide. You can incorporate any transport you want in jboss.

              • 4. Re: JBoss + KaRMI
                kesara

                Went through the docs scott.stark suggested. However there's still difficult to figure whether this is possible, since KaRMI does NOT extend the java.rmi.* interfaces but REPLACEs those.

                i.e
                java.lang.Object
                extended by uka.karmi.rmi.server.RemoteObject
                extended by uka.karmi.rmi.server.UnicastRemoteObject

                therefore the java.rmi.server.UnicastRemoteObject class need to be REPLACED with the uka.karmi.rmi.server.UnicastRemoteObject class.

                Do you think this is still feasible?

                Thanks in advance.