From 713effc0b11d1a57be5a1ae0008af22ebfaf956a Mon Sep 17 00:00:00 2001
From: Antoine Levy-Lambert
Warning : JAXP creates by default a non namespace aware parser. +The "http://xml.org/sax/features/namespaces" feature is set +by default to false by the JAXP implementation used by ant. To validate +a document containing namespaces, +set the namespaces feature to true explicitly by nesting the following element: +
+ <attribute name="http://xml.org/sax/features/namespaces" value="true"/> ++If you are using for instance a xsi:noNamespaceSchemaLocation attribute in your XML files, +you will need this namespace support feature. + +
If you are using a parser not generated by JAXP, by using the classname attribute of xmlvalidate, this warning +may not apply.
+ +