[ANN] CodeSynthesis XSD - XML data binding compiler for C++

Tech-Archive recommends: Fix windows errors by optimizing your registry




CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to
C++ compiler. Provided with an XML instance specification (XML Schema),
it generates C++ classes that represent the given vocabulary as well as
parsing and serialization code. You can then access the data stored in
XML using types and functions that semantically correspond to your
application domain rather than dealing with elements, attributes, and
text in a direct representation of XML such as DOM or SAX:


<contact>
<name>John Doe</name>
<email>j@xxxxxxx</email>
<phone>555 12345</phone>
</contact>


auto_ptr<Contact> c = contact ("c.xml");

cout << c->name () << ", "
<< c->email () << ", "
<< c->phone () << endl;


XSD supports both in-memory and event-driven, stream-oriented
processing models by implementing two C++ mappings: C++/Tree and
C++/Parser. The C++/Tree mapping represents the information stored
in XML instance documents as a tree-like, in-memory data structure.
The C++/Parser mapping generates parser templates for data types
defined in XML Schema. Using these parser templates you can build
your own in-memory representations or perform immediate processing
of XML instance documents.


XSD is available on GNU/Linux, HP-UX, Mac OS X, Solaris, and Windows.
Supported C++ compilers include: GNU g++, HP aCC, Intel C++, Sun C++,
and MS Visual C++.

More information, source code as well as precompiled binaries for all
supported platforms are available from

http://codesynthesis.com/products/xsd/


Best Regards,
Boris

--
Boris Kolpackov
Code Synthesis Tools CC
http://www.codesynthesis.com
Tel: +27 76 1672134
Fax: +27 21 5526869
.



Relevant Pages

  • Re: How do you use a XSD to create a XML document?
    ... I need the class to be dynamical so it can load any XSD without privious ... Also the "default" values are dependent on the xml instance and therefor I ... I have found out how to load the XSD ind a XmlSchema class and I have the ...
    (microsoft.public.dotnet.xml)
  • Re: Typed Dataset from xsd-File
    ... XDR to XSD ... Generates an XML schema from an XML-Data-Reduced schema file. ... Generates common language runtime DataSet classes from an XSD schema file. ...
    (microsoft.public.dotnet.framework.adonet)
  • Re: Adding in an XML Schema
    ... I had no problem using this xsd. ... On the XML Schema tab, I clicked Add Schema, navigated to the .xsd file, ... The XML structure task pane opened and told me that no XML elements have ...
    (microsoft.public.word.vba.general)
  • Re: XML from Commerce server 2002 -> Biztalk 2004
    ... sample XML file from your CS2002 developers and use it to create a BTS2004 ... "A BizTalk Enthusiast" ... > files generated by Commerce Server 2002. ... > database and then generate the XML and XML schema corresponding to the ...
    (microsoft.public.biztalk.general)
  • Re: Problems for XML schema
    ... Element is an XML concept. ... It means a unit represented by paired start-element and end-element tags (or a single tag which represents both. ... Datatype is an XML Schema concept. ...
    (comp.text.xml)