1 2 Previous Next 16 Replies Latest reply on Sep 14, 2007 2:51 AM by jaikiran

    Issues with EJB 3.0/ JBoss 4.0.5

    avthosar

      Hello,
      I am using a 3rd party API called JBilling, which used EjB2.x and runs over Jboss 3.x, they have provided a Jar file to called JBilling API to access the JBilling Server, I have written a sample code to interact with same which includes the JBilling client jar, this code perfectly in standalone mode and in a servlets deployed on JBoss 4.0.5. But when the same code is called from within EJB 3 deployed on JBoss 4.0.5, i get the following exception.
      java.lang.ClassCastException: org.jboss.remoting.InvokerLocator cannot be cast to org.jboss.remoting.InvokerLocator

      Can anyone provide some pointers on how do i proceed from here? This is the first time I am seeing such an issue.

      Thanks AVT

        • 1. Re: Issues with EJB 3.0/ JBoss 4.0.5
          jaikiran

           

          java.lang.ClassCastException: org.jboss.remoting.InvokerLocator cannot be cast to org.jboss.remoting.InvokerLocator


          Looks like you have more than one jar file in the classpath which has this class. Have a look at : http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassCastExceptions, especially the jmx-Console method mentioned over there.



          • 2. Re: Issues with EJB 3.0/ JBoss 4.0.5
            avthosar

            Hello,
            I did remove some jar, and now that particular exception is gone, but I am getting a new excpetion which says that

            java.lang.IllegalStateException: Failed to find method for hash:-2
            768991178878534186

            Is it also related to jar files? Need some advice on how to proceed.

            Thanks

            • 3. Re: Issues with EJB 3.0/ JBoss 4.0.5
              jaikiran

               

              java.lang.IllegalStateException: Failed to find method for hash:-2
              768991178878534186


              These type of exceptions occur if you have different versions of JBoss jars on the server and the client. The client appears to be using a different version of some JBoss jar than the one that is on the JBoss server. Can you provide more details about your application, i mean the jars that you include at the client. Also, can you post the entire exception stacktrace?

              • 4. Re: Issues with EJB 3.0/ JBoss 4.0.5
                avthosar

                Hello,
                Thanks for your quick replies. Given below is the complete stacktrace. Actually the client code is running being called from within EJB 3.0 deployed on JBoss 4.0.5 and the Server part is deployed on JBoss 3.x.
                @jaikiran are you jaikiran pai?


                11:42:00,267 ERROR [STDERR] com.sapienter.jbilling.server.util.api.JbillingAPIException: java.lang.IllegalStateException: Failed to find method for hash:-2
                768991178878534186
                11:42:00,267 ERROR [STDERR] at com.sapienter.jbilling.server.util.api.EJBAPI.(EJBAPI.java:53)
                11:42:00,283 ERROR [STDERR] at com.sapienter.jbilling.server.util.api.JbillingAPIFactory.getAPI(JbillingAPIFactory.java:56)
                11:42:00,283 ERROR [STDERR] at com.stratoshear.webinterface.ui.SubscriberHandler.populateSubscriberDetails(Unknown Source)
                11:42:00,283 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                11:42:00,299 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                11:42:00,299 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:42:00,299 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
                11:42:00,299 ERROR [STDERR] at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
                11:42:00,314 ERROR [STDERR] at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
                11:42:00,314 ERROR [STDERR] at javax.faces.component.UICommand.broadcast(UICommand.java:312)
                11:42:00,314 ERROR [STDERR] at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
                11:42:00,314 ERROR [STDERR] at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
                11:42:00,330 ERROR [STDERR] at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
                11:42:00,330 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
                11:42:00,330 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
                11:42:00,346 ERROR [STDERR] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
                11:42:00,346 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
                11:42:00,346 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                11:42:00,346 ERROR [STDERR] at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:112)
                11:42:00,361 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
                11:42:00,361 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                11:42:00,361 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
                11:42:00,361 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
                11:42:00,377 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                11:42:00,377 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
                11:42:00,377 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
                11:42:00,392 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
                11:42:00,392 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
                11:42:00,392 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
                11:42:00,392 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
                11:42:00,408 ERROR [STDERR] at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
                11:42:00,408 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
                11:42:00,408 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
                11:42:00,424 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
                11:42:00,424 ERROR [STDERR] at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
                11:42:00,424 ERROR [STDERR] at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
                11:42:00,424 ERROR [STDERR] at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
                11:42:00,439 ERROR [STDERR] at java.lang.Thread.run(Thread.java:619)
                11:42:00,439 ERROR [STDERR] Caused by: java.lang.IllegalStateException: Failed to find method for hash:-2768991178878534186
                11:42:00,439 ERROR [STDERR] at org.jboss.invocation.MarshalledInvocation.getMethod(MarshalledInvocation.java:367)
                11:42:00,439 ERROR [STDERR] at org.jboss.ejb.Container.invoke(Container.java:728)
                11:42:00,455 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor107.invoke(Unknown Source)
                11:42:00,455 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:42:00,455 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
                11:42:00,471 ERROR [STDERR] at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
                11:42:00,471 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:62)
                11:42:00,471 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:54)
                11:42:00,471 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:82)
                11:42:00,486 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:197)
                11:42:00,486 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
                11:42:00,486 ERROR [STDERR] at org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:360)
                11:42:00,486 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor119.invoke(Unknown Source)
                11:42:00,502 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:42:00,502 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
                11:42:00,502 ERROR [STDERR] at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:305)
                11:42:00,502 ERROR [STDERR] at sun.rmi.transport.Transport$1.run(Transport.java:159)
                11:42:00,517 ERROR [STDERR] at java.security.AccessController.doPrivileged(Native Method)
                11:42:00,517 ERROR [STDERR] at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
                11:42:00,517 ERROR [STDERR] at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
                11:42:00,533 ERROR [STDERR] at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
                11:42:00,533 ERROR [STDERR] at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
                11:42:00,533 ERROR [STDERR] at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
                11:42:00,533 ERROR [STDERR] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                11:42:00,549 ERROR [STDERR] at java.lang.Thread.run(Thread.java:619)
                11:42:00,549 ERROR [STDERR] at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
                11:42:00,549 ERROR [STDERR] at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
                11:42:00,549 ERROR [STDERR] at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142)
                11:42:00,564 ERROR [STDERR] at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Unknown Source)
                11:42:00,564 ERROR [STDERR] at org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:133)
                11:42:00,564 ERROR [STDERR] at org.jboss.invocation.InvokerInterceptor.invokeInvoker(InvokerInterceptor.java:365)
                11:42:00,580 ERROR [STDERR] at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:197)
                11:42:00,580 ERROR [STDERR] at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
                11:42:00,580 ERROR [STDERR] at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
                11:42:00,580 ERROR [STDERR] at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:184)
                11:42:00,595 ERROR [STDERR] at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
                11:42:00,595 ERROR [STDERR] at $Proxy92.create(Unknown Source)
                11:42:00,595 ERROR [STDERR] at com.sapienter.jbilling.server.util.api.EJBAPI.(EJBAPI.java:51)
                11:42:00,611 ERROR [STDERR] ... 37 more

                • 5. Re: Issues with EJB 3.0/ JBoss 4.0.5
                  jaikiran

                  Looks like the classes are incompatible between these 2 versions.

                  "avthosar" wrote:

                  @jaikiran are you jaikiran pai?



                  Yes.



                  • 6. Re: Issues with EJB 3.0/ JBoss 4.0.5
                    jaikiran

                    And when you say you are using JBoss3.x as the server, which exact version are you using? I just looked up the JIRA for JBoss Application Server and found a similar issue there http://jira.jboss.com/jira/browse/JBAS-2803. Its been mentioned that its been fixed in JBossAS-3.2.8.SP1

                    • 7. Re: Issues with EJB 3.0/ JBoss 4.0.5
                      avthosar

                      Thanks jaikiran, you remember last thursday you helped me solve the authentication issue. Actually the problem is that I am not able to figure out the version of JBoss as it has been shipped with JBilling Server, I guess they have modified the Jboss. So how can I find out the version?

                      Thanks AVT

                      • 8. Re: Issues with EJB 3.0/ JBoss 4.0.5
                        jaikiran

                         

                        Thanks jaikiran, you remember last thursday you helped me solve the authentication issue.


                        Ahh... I remember now :) I was sure i had heard about a similar setup, as yours, but wasnt able to recollect where.

                        "avthosar" wrote:
                        So how can I find out the version?



                        If you have access to the server folders, you can look in the MANIFEST.MF file which is present in %JBOSS_HOME%/lib/jboss-system.jar/META-INF folder. It will contain a "Implementation-Version" which mentions the version of JBoss. For my installation of 4.0.5, it shows this:

                        Manifest-Version: 1.0
                        Ant-Version: Apache Ant 1.6.2
                        Created-By: 1.4.2_09-b05 (Sun Microsystems Inc.)
                        Specification-Title: JBoss
                        Specification-Version: 4.0.5.GA
                        Specification-Vendor: JBoss (http://www.jboss.org/)
                        Implementation-Title: JBoss [Zion]
                        Implementation-URL: http://www.jboss.org/
                        Implementation-Version: 4.0.5.GA (build: CVSTag=Branch_4_0 date=200610
                        162339)

                        Implementation-Vendor: JBoss Inc.
                        Implementation-Vendor-Id: http://www.jboss.org/


                        Check what your server installation contains.

                        • 9. Re: Issues with EJB 3.0/ JBoss 4.0.5
                          avthosar

                          Hello,
                          I am now using JBoss 3.2.8 as server, which is hosting a 3rd party API called JBilling, which used EjB2.xand my client (EJB 3.0) is based on Jboss 4.0.5. When I try to connect to the server I get an exception, the stacktrace is given below. I checked the jars containing the class org.jboss.util.id.GUID on both JBoss's, the same version of the class is present on both servers. What could be the reason for getting this exception?

                          Thanks

                          17:21:25,261 ERROR [STDERR] com.sapienter.jbilling.server.util.api.JbillingAPIException: java.lang.ClassCastException: org.jboss.util.id.GUID cannot be cas
                          t to org.jboss.util.id.GUID
                          17:21:25,276 ERROR [STDERR] at com.sapienter.jbilling.server.util.api.EJBAPI.(EJBAPI.java:53)
                          17:21:25,276 ERROR [STDERR] at com.sapienter.jbilling.server.util.api.JbillingAPIFactory.getAPI(JbillingAPIFactory.java:56)
                          17:21:25,276 ERROR [STDERR] at com.stratoshear.webinterface.ui.SubscriberHandler.populateSubscriberDetails(Unknown Source)
                          17:21:25,292 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                          17:21:25,292 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                          17:21:25,292 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                          17:21:25,308 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
                          17:21:25,308 ERROR [STDERR] at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
                          17:21:25,323 ERROR [STDERR] at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
                          17:21:25,323 ERROR [STDERR] at javax.faces.component.UICommand.broadcast(UICommand.java:312)
                          17:21:25,323 ERROR [STDERR] at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
                          17:21:25,339 ERROR [STDERR] at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
                          17:21:25,339 ERROR [STDERR] at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
                          17:21:25,355 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
                          17:21:25,355 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
                          17:21:25,355 ERROR [STDERR] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
                          17:21:25,370 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
                          17:21:25,370 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                          17:21:25,370 ERROR [STDERR] at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:112)
                          17:21:25,386 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
                          17:21:25,386 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                          17:21:25,401 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
                          17:21:25,401 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
                          17:21:25,401 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                          17:21:25,417 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
                          17:21:25,417 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
                          17:21:25,417 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
                          17:21:25,433 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
                          17:21:25,433 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
                          17:21:25,448 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
                          17:21:25,448 ERROR [STDERR] at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
                          17:21:25,448 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
                          17:21:25,464 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
                          17:21:25,464 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
                          17:21:25,464 ERROR [STDERR] at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
                          17:21:25,480 ERROR [STDERR] at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
                          17:21:25,480 ERROR [STDERR] at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
                          17:21:25,495 ERROR [STDERR] at java.lang.Thread.run(Thread.java:619)

                          • 10. Re: Issues with EJB 3.0/ JBoss 4.0.5
                            jaikiran

                            Where are you getting this error? At the client(Jboss4.x) or on the server(Jboss3.x)?

                            • 11. Re: Issues with EJB 3.0/ JBoss 4.0.5
                              avthosar

                              I am getting this error at the client(Jboss4.x) end.

                              • 12. Re: Issues with EJB 3.0/ JBoss 4.0.5
                                jaikiran

                                Does the jmx-console (of JBoss4.x) method mentioned in one of my posts above, show that this class is being loaded from more than one jar?

                                • 13. Re: Issues with EJB 3.0/ JBoss 4.0.5
                                  avthosar

                                  Hello,
                                  The output is given below. It shows only 1 instance. Am I missing out on something?


                                  org.jboss.util.id.GUID Information
                                  Repository cache version:
                                  org.jboss.util.id.GUID(1579a30).ClassLoader=org.jboss.system.server.NoAnnotationURLClassLoader@8a0d5d
                                  ..org.jboss.system.server.NoAnnotationURLClassLoader@8a0d5d
                                  ..sun.misc.Launcher$AppClassLoader@df6ccd
                                  ....file:/C:/Program%20Files/Java/jdk1.6.0_01/lib/tools.jar
                                  ....file:/E:/Tools/jboss-4.0.5.GA/bin/run.jar
                                  ..sun.misc.Launcher$ExtClassLoader@601bb1
                                  ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/dnsns.jar
                                  ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/localedata.jar
                                  ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/sunjce_provider.jar
                                  ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/sunmscapi.jar
                                  ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/sunpkcs11.jar
                                  ++++CodeSource: (file:/E:/Tools/jboss-4.0.5.GA/lib/jboss-common.jar )
                                  Implemented Interfaces:
                                  ++interface org.jboss.util.id.ID(31ac05)
                                  ++++ClassLoader: org.jboss.system.server.NoAnnotationURLClassLoader@8a0d5d
                                  ++++CodeSource: (file:/E:/Tools/jboss-4.0.5.GA/lib/jboss-common.jar )
                                  ++interface java.lang.Comparable(11492ed)
                                  ++++ClassLoader: null
                                  ++++Null CodeSource

                                  ### Instance0 via UCL: org.jboss.system.server.NoAnnotationURLClassLoader@8a0d5d

                                  • 14. Re: Issues with EJB 3.0/ JBoss 4.0.5
                                    avthosar

                                    This is the output on the server end. Only 1 instance of GUID here as well.

                                    org.jboss.util.id.GUID Information
                                    Repository cache version:
                                    org.jboss.util.id.GUID(3f96ee).ClassLoader=org.jboss.system.server.NoAnnotationURLClassLoader@cdedfd
                                    ..org.jboss.system.server.NoAnnotationURLClassLoader@cdedfd
                                    ..sun.misc.Launcher$AppClassLoader@fabe9
                                    ....file:/C:/Program%20Files/Java/jdk1.6.0_01/lib/tools.jar
                                    ....file:/E:/jboss-3.2.8.SP1/bin/run.jar
                                    ..sun.misc.Launcher$ExtClassLoader@df6ccd
                                    ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/dnsns.jar
                                    ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/localedata.jar
                                    ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/sunjce_provider.jar
                                    ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/sunmscapi.jar
                                    ....file:/C:/Program%20Files/Java/jdk1.6.0_01/jre/lib/ext/sunpkcs11.jar
                                    ++++CodeSource: (file:/E:/jboss-3.2.8.SP1/lib/jboss-common.jar )
                                    Implemented Interfaces:
                                    ++interface org.jboss.util.id.ID(394576)
                                    ++++ClassLoader: org.jboss.system.server.NoAnnotationURLClassLoader@cdedfd
                                    ++++CodeSource: (file:/E:/jboss-3.2.8.SP1/lib/jboss-common.jar )
                                    ++interface java.lang.Comparable(1ff5160)
                                    ++++ClassLoader: null
                                    ++++Null CodeSource

                                    ### Instance0 via UCL: org.jboss.system.server.NoAnnotationURLClassLoader@cdedfd

                                    1 2 Previous Next