Click here to Skip to main content
Click here to Skip to main content

Generate Sample XML from XSD

By , 8 Jun 2012
 

Introduction

I spent considerable amount of time to know how to generate XML from a given XSD and I had great difficulties finding solution. That is why I am sharing this Tip which is I think useful.

Background 

We have XSD.EXE available to generate XML Schema (XSD) from a XML file but sometime we might need to work generate an XML for given XSD, specially in case of writing Service Client, where for Server has exposed Request XSD and Response XSD and want to start with client Request.

Generate Sample XML using Visual Studio 

Create an XSD File

Open/Create XSD file in Visual Studio

<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="http://tempuri.org/XMLSchema.xsd"
    elementFormDefault="qualified"  
    xmlns="http://tempuri.org/XMLSchema.xsd" 
    xmlns:mstns="http://tempuri.org/XMLSchema.xsd"  
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:simpleType name="AuthorInfor">
    <xs:annotation>
      <xs:documentation>this element will all authors for book</xs:documentation>
    </xs:annotation>
    <xs:restriction base='xs:string'>
      <xs:maxLength value='15'/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="IsdnInfo">
    <xs:annotation>
      <xs:documentation>this element defines 10 digit ISDN code</xs:documentation>
    </xs:annotation>
    <xs:restriction base='xs:string'>
      <xs:maxLength value='10'/>
    </xs:restriction>
  </xs:simpleType>
  <xs:complexType name="BookShelfInfo">
    <xs:sequence>
      <xs:choice minOccurs="1" maxOccurs="1">
        <xs:choice minOccurs="1" maxOccurs="5">
          <xs:element name="byAuthor" type="AuthorInfor"/>
        </xs:choice>
        <xs:element name="byISDNNo" type="IsdnInfo"/>
      </xs:choice>
    </xs:sequence>
  </xs:complexType>
  <xs:element name="MyBookShelf" type="BookShelfInfo"/>
</xs:schema>

Open XML Schema Explorer

Open XML Schema Explorer by clicking on "XML Schema Explorer" or 'Use the XML Schema Explorer...'.

You can also open "Schema Explorer" by clicking View menu.

Generate XML File

If your Schema file is valid and you are having elements, then Right click on element and click on "Generate Sample XML", this functionality generates XML file in temp folder and open ups into Visual Studio.

Generate Sample XML file generating XML like below:

<?xml version="1.0" encoding="utf-8"?>
<MyBookShelf xmlns="http://tempuri.org/XMLSchema.xsd">
  <byAuthor>Chetan Bhagat</byAuthor>
  <byAuthor>Aditya Ghosh</byAuthor>
  <byAuthor>Reena Mehta</byAuthor>
</MyBookShelf>

Simply

Remember, this is quite easy to generate any sample XML file from XSD. Just think of it! 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Joshi, Rushikesh
Software Developer (Senior) Synechron
United States United States
Member
Having 10 Years of Software Development expierence.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionFull XML Pinmemberrezaru200023 Apr '13 - 17:18 
AnswerThanks for sharing Pinmembershaolinshaojie24 Sep '12 - 17:41 
GeneralRe: Thanks for sharing PinmemberJoshi, Rushikesh25 Sep '12 - 9:03 
QuestionMy vote of 5. Pinmemberqian4040112 Jun '12 - 22:48 
AnswerRe: My vote of 5. PinmemberJoshi, Rushikesh13 Jun '12 - 4:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 8 Jun 2012
Article Copyright 2012 by Joshi, Rushikesh
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid