Share via


Inline Schemas

MSDN just published my article on inline schemas.  Check it out.

Comments

  • Anonymous
    November 16, 2005
    Great article. I'm wondering if MSXML has an analog to ProcessInlineSchema.
  • Anonymous
    November 17, 2005
    MSXML has a DOM property UseInlineSchema, which is equivalent to ProcessInlineSchema in managed. This property is available in MSXML 5 and 6. More info on MSDN: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/html/945171bc-05e6-441a-bf52-5e3695c318bf.asp

    Stan
  • Anonymous
    September 27, 2006
    I have a schema which defines a complex type with a sequence of elements. The schema has defined default values for those elements.  In the instance document all the elements appear but some have no value. After validating the instance document with the schema, I want to get an xml with the default values filled in for those elements which had no value initially. An MSXML solution will be great, but using System.xml will do.