[Mono-bugs] [Bug 336495] XmlDocument.Load behaving different than MS implementation ( Schema validation)

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Oct 31 02:59:49 EDT 2007


https://bugzilla.novell.com/show_bug.cgi?id=336495#c10


Atsushi Enomoto <atsushi at ximian.com> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
             Status|REOPENED                                        |ASSIGNED




--- Comment #10 from Atsushi Enomoto <atsushi at ximian.com>  2007-10-31 00:59:48 MST ---
Ok, with some modification (the xml document indicates wrong "valid" schema,
not the local "schema.xsd"), your new sample actually reproduced the issue you
mentioned for the first time (probably).

This small subset of code shows that XmlValidatingReader has the actual issue
to fail to ignore ValidationType.None:

XmlValidatingReader vr = new XmlValidatingReader (new XmlTextReader (args
[0]));
vr.ValidationType = ValidationType.None;
while (!vr.EOF)
        vr.Read ();


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list