Exception inside CORBA when accessing a remote bean

前端 未结 3 1707
你的背包
你的背包 2021-01-15 05:02

On Windows Server with Glassfish 4.0 and JDK 1.7_55 I getting NoClassDefFoundError and ClassNotFoundException then invoking remote bean methods.

StandardWrap         


        
相关标签:
3条回答
  • 2021-01-15 05:13

    It seems that this is a bug related to JDK 1.7_55. After downgrading to JDK 1.7_51 problem was solved.

    There is an entry in the Glassfish bug tracker on this bug. https://java.net/jira/browse/GLASSFISH-21047

    0 讨论(0)
  • 2021-01-15 05:21

    as @Aleksandr said, this is 7u55's bug.

    You can try running glassfish with

    JAVA_HOME=/usr/lib/jvm/java-6-oracle ~/glassfish-3/glassfish/bin/asadmin start-domain domain1
    

    This will temporary change JAVA_HOME path. Later you have to check localhost:4848 > srever > JVM report whether java root has changed. If it did not then you probably need to modify asadmin.conf script or domain.xml.

    0 讨论(0)
  • 2021-01-15 05:30

    Yes this is a bug. I solved the same problem by upgradin JDK to 1.8.0_25

    0 讨论(0)
提交回复
热议问题