Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6369399

(cl) REGRESSION: NPE exception throws when invoked from a JNI callback thread

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • 6
    • core-libs
    • b40
    • 6
    • x86
    • linux, windows_xp

      J2SE Version (please include all output from java -version flag):

        java version "1.6.0-rc"
        Java(TM) 2 Runtime Environment, Standard Edition (build 1.6.0-rc-b65)
        Java HotSpot(TM) Client VM (build 1.6.0-rc-b65, mixed mode, sharing)

      Does this problem occur on J2SE 1.4.x or 5.0.x ? Yes / No (pick one)

        Not in 1.5

      Operating System Configuration Information (be specific):

        Windows XP SP2

      Hardware Configuration Information (be specific):

        Processor x86 Family 15 Model 2 Stepping 4 GenuineIntel ~2545 Mhz
        BIOS Version/Date Award Software International, Inc. 6.00 PG, 19/08/2002
       1GB memory

      Bug Description:

        DocumentBuilderFactory.newInstance() fails with "javax.xml.parsers.FactoryConfigurationError:
        Provider com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl could not be
        instantiated: java.lang.NullPointerException" when invoked from a JNI callback thread that
        has been correctly attached to the VM. Worked in 1.5.

        The stack-trace for the NullPointerException isn't available.

        Not sure at what point in the Mustang cycle this bug was introduced as I've only just
        tried the application using it.


      Steps to Reproduce (be specific):

        Not easy to include stuff for this JNI application.










      --Boundary_(ID_A3gp4UP9hQtr4llcCCOjtA)--
      more information from the submitter:

      it appears that the NullPointerException is being
      generated because the (JNI) Thread doesn't have a "contextClassLoader"
      defined for it.

      in javax.xml.parsers.FactoryFinder we end up in the "newInstance" method
      with parameter "cl" set to null (this is due to the calling method "find"
      invoking
      "classLoader = FactoryFinder.class.getClassLoader();" to get the classloader
      and this returning "null", which apparently can mean "bootstrap class
      loader").

      "newInstance" then goes ahead and calls ss.getContextClassLoader() which
      gets the Thread's contextClassLoader which is "null". The code then fails on
      the subsequent line attempting "cl.cloadClass(className);


          static Object newInstance(String className, ClassLoader cl,
              boolean doFallback)
              throws ConfigurationError
          {
              // assert(className != null);
              try {
                  Class providerClass;
                  if (cl == null) {
                  // If classloader is null get the context class loader
                  cl = ss.getContextClassLoader();
                  providerClass = cl.loadClass(className);

            jdn Jeffrey Nisewanger (Inactive)
            tyao Ting-Yun Ingrid Yao (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: