matthiasblaesing commented on issue #7743: URL: https://github.com/apache/netbeans/issues/7743#issuecomment-2350224810
XML namespaces are URIs, but they don't encode the location of the defining DTD/XSD. XML processors either need to be provided with a list of known namespaces->grammar mappings (catalogs) or the XML document must provide a `xsi:schemaLocation` attribute (`xsi` here mapping to the namespace `http://www.w3.org/2001/XMLSchema-instance`). The latter encodes a space separated list of namespace->grammar location mappings. NetBeans comes with an extensive set of grammars and provides these to the internal XML processing via its catalog mechanisms. So not an issue, just wrong assumptions about the nature of xml namespaces. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
