To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=51724
------- Additional comments from [EMAIL PROTECTED] Wed Aug 24 01:29:58 -0700 2005 ------- sb->cmc: From your build.log, it seems there is a problem in the JNI--UNO bridge. What should happen is as follows: uno_ext_getMapping (jni_bridge.cxx) calls Bridge::Bridge (jni_bridge.cxx), which obtains a jmvaccess::UnoVirtualMachine, which is a pair of a JVM pointer and a com.sun.star.lib.unoloader.UnoClassLoader (ridljar) which is a classloader that knows all the UNO Java classes (i.e., ridl.jar, jurt.jar, etc.). Whenever the JNI--UNO bridge needs to find a UNO Java class via JNI, it does so either (a) via ClassLoader.findClass at the given UnoClassLoader, or (b) directly via JNI's FindClass from native code that in turn got called back from a UNO Java class (and in which case the classloader used by JNI will thus be UnoClassLoader; this detail of FindClass changed in JRE 1.2, previous versions always used the base system classloader, and maybe gcj has a bug here). However, at some place, finding the UNO Java class com.sun.star.uno.Type fails. It could be that we get caught in case (b) here, but I doubt it. In either case, from the stacktrace it is hard to tell exactly where the problem occurs. Could you please step through the try--catch block in uno_ext_getMapping (jni_bridge.cxx) and see exactly where the BridgeRuntimeError is thrown. --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
