2 Replies Latest reply on Nov 18, 2001 1:36 AM by gordonlch

    java.lang.VerifyError

    gordonlch

      Hi all,

      I write a simple ejb(mostly, like the example), and use the client call it. Client exectly like the example, just lookup other name. But when i run the client, it return following error :

      -------------->8---------
      java.lang.VerifyError: (class: com/sun/corba/ee/internal/javax/rmi/CORBA/Util, method: isLocal signature: (Ljavax/rmi/CORBA/Stub;)Z) Incompatible object argument for function call
      -------------->8--------------

      it look like the java lib problem , it that ture?
      my client class path included
      jboss's jaas.jar, ejb.jar,jnp-client.jar, jboss-client.jar, jbosssx-client.jar and jdk131/jre/lib/rt.jar and j2ee's j2ee.jar and include my classes path and the jndi.properties.

      Please help.

      Gordon

        • 1. Re: java.lang.VerifyError
          cincaipatron

          as lib, you'll need:
          jboss-client.jar, jboss-j2ee.jar, jbosssx-client.jar, jndi.jar, jnp-client.jar.

          You don't need j2ee's j2ee.jar cause all necessary classes/interfaces
          already contained in jboss-j2ee.jar.

          Don't forget to supply these properties also:
          java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
          java.naming.provider.url=target_server:1099
          java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces

          Hope that might help.

          • 2. Re: java.lang.VerifyError
            gordonlch

            Yeah, now i just use two jar, one is jboss-client,jar and ejb.jar in EJb client, it work fine.

            Thanks