OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Validation irrespective of DOCTYPE?



Hi,

I'm getting XML from a socket, which may or may not contain a DOCTYPE
declaration, which would indicate the associated DTD. Either way, I'd
like to validate this XML. Two approaches I can think of:

 - build a non-validated DOM, add the DOCTYPE decl to the DOM,
   revalidate the DOM. Hampered by lack of revalidating parsers.
 - Manually parse the XML and add the DOCTYPE to the text stream, and
   then do a validating parse.

Or can I just insist that my upstream source supplies a DOCTYPE? Is this
commonly regarded as part of the XML "contract"?

thanks,

--Jeff