XML Parser, XML/XSD validation, XML Generation Functionality inVB.net

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mounilk

    XML Parser, XML/XSD validation, XML Generation Functionality inVB.net

    Hi,

    Can any please help me in finding any classes or tools available in
    VB.net to perform the following functionality

    1. To perform XML Parsing
    2. To perform XML validation against given XSD
    3. To generate XML when given data and XSD

    Thanks,

    Mounil.
  • Martin Honnen

    #2
    Re: XML Parser, XML/XSD validation, XML Generation Functionalityin VB.net

    Mounilk wrote:
    Can any please help me in finding any classes or tools available in
    VB.net to perform the following functionality
    >
    1. To perform XML Parsing
    System.Xml.XmlR eader
    2. To perform XML validation against given XSD
    Also System.Xml.XmlR eader, with proper XmlReaderSettin gs, see

    3. To generate XML when given data and XSD
    System.Xml.Seri alization.XmlSe rializer could help, you would take the
    XSD schema and use the xsd.exe tool to generate .NET classes, then you
    could populate those classes with the data and serialize the objects to XML.


    --

    Martin Honnen --- MVP XML

    Comment

    Working...