5,445,109 members and growing! (13,753 online)
Email Password   helpLost your password?
Languages » XML » XML/XSLT     Intermediate License: The Code Project Open License (CPOL)

Creating an XML file based on XSD

By jebarson

An article which describes creating an XML file based on a schema.
C#, XML, Windows, .NET, Visual Studio, Dev

Posted: 16 Oct 2006
Updated: 16 Oct 2006
Views: 18,322
Bookmarked: 8 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
8 votes for this Article.
Popularity: 2.32 Rating: 2.57 out of 5
2 votes, 25.0%
1
1 vote, 12.5%
2
0 votes, 0.0%
3
3 votes, 37.5%
4
2 votes, 25.0%
5

Introduction

This article will be successful in explaining you how to generate an XML file based on the schema you have.

Background

I really had a couple of bad days goggling and trying out to generate an XML file based on the schema I am given with. I successfully loaded the dataset from SQL which contains the data necessary for generating the XML file but I was unable to bind it to the format I needed. Being a software engineer, I thought if it was possible to hard-code it and write it as a text file? Good heavens, I came across the XSD.exe tool which comes along with the SDK of Visual Studio. The tool generates a class file which will return a dataset of the structure described in the schema. So once you have set all the properties you can play around

Using the code

You can find XSD.exe in the "bin" folder of the SDK of Visual Studio (if you are not using Visual Studio, I am attaching the EXE file for you). You can generate the code in any .NET supported language (you can find them by running xsd/? in the prompt). As I work with VB.NET, I will provide you the sample in VB. I have a schema file named "schema.xsd". I will generate a class file "schema.vb" using the following command in command prompt

xsd /d /l:VB C:\schema.xsd /n:XSDSchema.Namespace

This will generate a class file in the location where the XSD.exe exists. Copy the file and add it to the class library or the project you use and then you have to assign the columns in each elements of the schema with the values and thus the dataset gets generated. You will not have any idea until you look into the sample code I have attached.

Private Function FillDataset(ByVal ds As DataSet) As String
    Dim _integrationMessage As New IntegrationMessage()
    Dim prevCustomer_id As Integer = -1
    Dim Customer_id As Integer

    'adding the header

    With _integrationMessage.Header
        Dim HeaderRow As IntegrationMessage.HeaderRow
        HeaderRow = .NewHeaderRow()
        With HeaderRow
            .messageType = "xml"
            .sendDate = Date.Now
            .sender = "Odin"
            .Header_Id = 1 'as there will be one header

        End With
        .Rows.Add(HeaderRow)
    End With

    'adding the body information

    With _integrationMessage.Body
        Dim Bodyrow As IntegrationMessage.BodyRow
        Bodyrow = .NewBodyRow()
        With Bodyrow
            .Body_Id = 1 'as there will be one body

        End With
        .Rows.Add(Bodyrow)
    End With

    'adding the body contents from the dataset

    For Each row As DataRow In ds.Tables(0).Rows
        Customer_id = row("Customer_id")

        If prevCustomer_id <> Customer_id Then
            'the customer has changed therefore 

            'new customer nodes to be created


            'adding the students element

            With _integrationMessage.Students
                Dim StudentsRow As IntegrationMessage.StudentsRow
                StudentsRow = .NewStudentsRow()
                With StudentsRow
                    .Body_Id = 1 'as there will be a single body

                    .Students_Id = Customer_id
                End With
                .Rows.Add(StudentsRow)
            End With

            'adding the student element

            With _integrationMessage.Student
                Dim StudentRow As IntegrationMessage.StudentRow
                StudentRow = .NewStudentRow()
                With StudentRow
                    .Students_Id = Customer_id
                    .studentId = Customer_id
                    .errorMessage = ""
                    .errorNumber = -1
                End With
                .Rows.Add(StudentRow)
            End With

            'adding the student info element

            With _integrationMessage.StudentInfo
                Dim StudentInfoRow As IntegrationMessage.StudentInfoRow
                StudentInfoRow = .NewStudentInfoRow()
                With StudentInfoRow
                    .studentId = Customer_id
                    .isActive = IIf(row("Customer_isActive") = 1, True, False)
                    .firstName = row("FirstName")
                    .lastName = row("LastName")
                    .homeCountry = row("HomeCountry")
                    .email = row("Email")
                    .startDate = row("StartDate")
                    .endDate = row("EndDate")
                    .currentLevel = row("CurrentLevel")
                    .bookedDate = row("BookedDate").bookedDate = row("BookedDate")
                    .cancelledDate = row("CancelledDate")
                    .SchoolCode = row("SchoolCode")
                    .programCode = row("ProgramCode")
                    .courseTypeCode = row("CourseTypeCode")
                    .courseIntensityCode = row("CourseIntensityCode")
                    .languageCode = row("LanguageCode")
                    .updateDate = row("CustomerUpdateDate")
                    .RedemptionCode = row("RedemptionCode")
                End With
                .Rows.Add(StudentInfoRow)
            End With
        End If

        'adding the courses which can be multiple for a customer

        With _integrationMessage.Courses
            Dim CoursesRow As IntegrationMessage.CoursesRow
            CoursesRow = .NewCoursesRow()
            With CoursesRow
                .Courses_Id = row("Course_id")
                .studentId = Customer_id
            End With
            .Rows.Add(CoursesRow)
        End With

        'adding the course entity

        With _integrationMessage.Course
            Dim CourseRow As IntegrationMessage.CourseRow
            CourseRow = .NewCourseRow()
            With CourseRow
                .Courses_Id = row("Course_id")
                .courseId = row("Customer_id")
                .isActive = IIf(row("Course_isActive") = 1, True, False)
                .language = row("LanguageCode")
                .SchoolCode = row("SchoolCode")
                .startDate = row("StartDate")
                .updateDate = row("CourseUpdateDate")
            End With
            .Rows.Add(CourseRow)
        End With

        prevCustomer_id = Customer_id
    Next

    Return _integrationMessage.GetXml()

End Function

The above function fills the schema based dataset "IntegrationMessage" with the dataset "ds" which I loaded from SQL. Once you are done with setting all the attributes with the values, you can play around with all the functionalities you can do with the dataset. Interesting! Isn't it?

Note: Having an experience in working with three tier architecture will help you. If you don’t have an experience or an idea of what three tier architecture is, then it will be better you grasp some knowledge on it before you get into coding.

Points of Interest

Found out how bad it is to waste three days keeping the ultimate tool in my desktop.

History

Please do check out my other articles, which may help you out.

License

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

About the Author

jebarson


Working as Technical Lead in Photon Infotech Inc., MA, USA. I love programming and that too exploring into new things. I am proud to say that I am from India.

I Started my first program by building a game on GW BASIC when I was 14. The release of the game made me addicted to fame. I fell in love with programming. I will program even on the last day of my life Smile
Occupation: Web Developer
Location: United States United States

Other popular XML articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 11 of 11 (Total in Forum: 11) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralSource Codememberhakanaktan10:50 19 Aug '08  
GeneralXml file generation based on xsd filememberkiran_dq10:46 6 Aug '07  
QuestionWhere is GetXml method?memberNamshub4:42 5 Jan '07  
AnswerRe: Where is GetXml method?memberjebarson12:19 5 Jan '07  
GeneralRe: Where is GetXml method? [modified]memberNamshub23:01 7 Jan '07  
GeneralSome more HelpmemberHemaRawat1:31 4 Jan '07  
GeneralRe: Some more Helpmemberjebarson12:16 5 Jan '07  
Generalwhat are the steps required to be taken after generating dataset class?membergarimajain_mca21:30 28 Nov '06  
AnswerRe: what are the steps required to be taken after generating dataset class?memberjebarson0:47 29 Nov '06  
GeneralAllready donememberPeter Ketelaars22:54 23 Oct '06  
GeneralRe: Allready donememberjebarson22:20 24 Oct '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 16 Oct 2006
Editor: Smitha Vijayan
Copyright 2006 by jebarson
Everything else Copyright © CodeProject, 1999-2008
Web20 | Advertise on the Code Project