There is a full introduction to XML data binding which has been done by Boris Kolpackov. He describes the difficulties experienced in both DOM and SAX when handling a large XML document since both of them are XML structure representations operating in attributes, text and generic elements. A bridging code is often written down by an application developer which allows for the functionality of identification and transformation of XML information to a more suitable representation for the purpose of consumption by the application
Let's suppose that you have an XML document and you need to process its data in a compiling language, such as C or C++. In such a case, you would have to create a program that would automatically parse the requested documents, basing on their structure.
XSD from CodeSynthesis comes to help the programmer work with XML data structures by automating the process of creation of code by creating the required C++ classes from an XML instance specification file.
By using CodeSynthesis XSD, you can easily create programs that work directly
This editorial is a short description about introduction to XML data binding in C++. Today XML is the most demanding application which every developer is using. Those developers who are using C++ are also processing XML files for development. When we talk about large XML vocabularies low level XML access of API’s such as DOM and SAX is dreary and error full. This is the reason why XML data binding is launched and it is becoming the most successful way for developers nowadays. It is the new alternate which is really helpful to automates
Boris Kolpackov put together a full introduction to XML Data Binding in C++: "Anyone who has had to handle a large XML vocabulary using DOM or SAX can attest that the task is hardly enjoyable. After all, both DOM and SAX are raw representations of the XML structure, operating in generic elements, attributes, and text. An application developer often has to write a substantial amount of bridging code that identifies and transforms pieces of information encoded in XML to a representation more suitable for consumption by the application