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

SchemaFactory impl doesn't configure SAX parser correctly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.3.1
    • 5.0
    • xml

      XSDHandler.java line 1543 reads:

                      if( schemaSource instanceof SAXSource ) {
                          SAXSource ss = (SAXSource)schemaSource;
                          XMLReader reader = ss.getXMLReader();
                          if(reader==null) {
                              reader = new SAXParser();
                              try {
                                  reader.setFeature("http://xml.org/sax/features/namespaces",true);
                                  reader.setFeature("http://xml.org/sax/features/namespace-prefixes",true);
                              } catch( SAXException e ) {
                                  // impossible
                                  e.printStackTrace();
                                  throw new InternalError();
                              }
                          }

      but this actually needs to be:


                      if( schemaSource instanceof SAXSource ) {
                          SAXSource ss = (SAXSource)schemaSource;
                          XMLReader reader = ss.getXMLReader();
                          if(reader==null) {
                              reader = new SAXParser();
                          }
                          try {
                              reader.setFeature("http://xml.org/sax/features/namespaces",true);
                              reader.setFeature("http://xml.org/sax/features/namespace-prefixes",true);
                          } catch( SAXException e ) {
                               // impossible
                              e.printStackTrace();
                              throw new InternalError();
                          }
       
      otherwise the JAXP RI doesn't work correctly with SAXSource.

            jsuttorsunw Jeff Suttor (Inactive)
            kkawagucsunw Kohsuke Kawaguchi (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: