![]() |
Generating Visual Basic Classes from XML Schemas
Jason Masterman and Chris Predeek RequirementsThis sample requires Internet Explorer 5.0, Visual Basic 6.0 and Windows 98, Windows NT 4.0, or Windows 2000.
DescriptionThis application can be used to read an XML schema to generate Visual Basic classes. The reason for this is to provide a standard object oriented way of working with XML data without having to traverse the XML DOM in order to get at the data. The generator has some requirements about the complexity of schema it can read to generate Visual Basic classes. This document will explain the schemas the generator can understand as well as how to use the XML Code Generator. A sample XML Schema is provided along with some sample XML data that goes with the schema. We will use these in our explanation of the generator. You should be able to use your own schema when done. The XML Schema Using the XML Code GeneratorThe XML Code Generator is a Visual Basic ActiveX-DLL application. All the source code and the compiled binary are provided for your use and modification. The easiest way to see the XML Code Generator work is to start by running some of the sample applications provided. Here is a list of the provided applications:
A WalkthroughLet’s use the Sample Schema.xml file and the sample Books.xml file to see how to use the code generator. Before you can run any of the applications you must first register the XMLClassGenerator.dll file using REGSVR32.EXE. Once the code generator has been registered you can run the sample applications. Next, run the XMLClassGenerator.EXE (located in the XML Class Generator UI directory) in order to generate the Visual Basic Classes for the Schema.xml file. Start the XMLClassGenerator.EXE.. Select Open from the File menu and open the Schema.xml file located in the Sample Schema and Data directory. Once you open the sample schema you should see the schema in the screen before you. Now selecxt Generate Classes from the Tools menu. This will invoke the XMLCodeGenerator.dll, creating classes for all of the relevant nodes in the Schema.xml file you loaded. The generator will build all of the classes and will automatically create and compile a Visual Basic ActiveX DLL project. You will be able to find a copy of all the generated code in the directory where your schema file is located. In our example you should find several files in the Sample Schema and Data directory. At this point you have generated classes that will work with the Books.xml data file. You can test the classes by running XMLCGTestApp. You can find this file located in the TestApp directory. This application was written using the classes generated from the XMLCodeGenerator.dll. There is nothing fancy about the user interface. The purpose of this application is to see if the generated classes will work well with the Books.xml data. When you click on the Go! button you will be prompted to select an XML file. Locate the Books.xml file on your machine. This file should be located in the same directory as the Schema.xml file. Once you located the Books.xml data file you will see a Visual Basic form that displays the XML data. This sample is using the classes to access the Books.xml data and displays that data on the form. You have now successfully used the code generator and all the provided samples. Steps for Using the Code Generator With Your Own ApplicationsThe following steps should help you when using the generator for your own applications:
Calling the Code Generator From Your Own ApplicationTo start using the XML Code Generator, first register the XMLClassGenerator.dll file by running REGSVR32.EXE (if it isn’t already registered on your machine). The XMLClassGenerator.dll contains a class, XMLClassGenerator.CXMLClassGenerator that has one method: GenerateWrappers(SchemaSourceFile, OutputDirectory). This method takes an XML Schema as the first parameter and an output directory as the second parameter. You can create your own Visual Basic application that calls the generator using the following code:
The result of running this code will be a Visual Basic project file that contains a set of Visual Basic classes corresponding to the elements in your schema and a compiled DLL for the new Visual Basic project. All source code for the XMLClassGenerator.dll is located in the XMLCodeGenerator directory. Schema ReferenceThe schema required by the XML Class Generator is identical to the XML Schema supported by Internet Explorer 5.0 with some minor modifications. The attributes that are not used are as follows:
The constraints are as follows:
Other details:
Overall the schema is used mostly for defining the class layouts. The minOccurs and maxOccurs help define the way the data is stored. If the minOccurs is not 1 or the maxOccurs is not 1, the datatype used is a collection. Otherwise, it’s based on the dt:type (String by default).
|
|
© 1999 Microsoft Corporation. All rights reserved. Terms of Use. |