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

JAXP doesn't implement SAX entityResolver2 properly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • None
    • 1.4.0
    • xml

      Our RI cleverly uses the same scanner for StAX and SAX parsing. Unfortunately, when the EntityManager calls resolveEntityAsPerStax:

              if (external) {
                  Entity.ExternalEntity externalEntity = (Entity.ExternalEntity)entity;
                  staxInputSource = resolveEntityAsPerStax(externalEntity.entityLocation);
                  /** xxx: Waiting from the EG
                   * //simply return if there was entity resolver registered and application
                   * //returns either XMLStreamReader or XMLEventReader.
                   * if(staxInputSource.hasXMLStreamOrXMLEventReader()) return ;
                   */
                  xmlInputSource = staxInputSource.getXMLInputSource() ;
              }

      in the case where the resolver is in fact a SAX EntityResolver2 interface, it has no way of determining the entity name (because all that was passed in was the location). That means it can't construct the correct call to resolveEntity for SAX.

            nwalshsunw Norman Walsh (Inactive)
            nwalshsunw Norman Walsh (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: