[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

XML/C++ Integration tools

  • From: ChrisDevich@U...
  • To: xml-dev@l...
  • Date: Fri, 16 Feb 2001 15:18:24 -0800

xml c
If there are any C++ programmers out there that need
to work with XML, it will be worth a moment of your time
to see how this works.
 
This example was tested in Linux/Sun/NT
gcc and VCPP makefiles and source are included.
 
It creates a run time object model from XML input.
A small tight framework allows you to create objects
from an XML input stream.
 
http://www.designerxml.com/UBT/Downloads.html
Download the "XML Integration Toolkit"  800k
 
here's a small snippit for creating objects from XML input.
------------------------------------------------------------------------------------
   ObjQuery<MyCustomer> qry(&broker, "MYXMLInputFile.xml");
   ObjResultSet<MyCustomer> &resultSet = qry.Execute();
   MyCustomer *pCust;
   while ( ( pCust = resultSet.next() ) != 0 )
   {
    // For each MyCustomer object returned in the query....
   }
--------------------------------------------------------------------------------
 
here's a small snippit for populating objects that already exist.
--------------------------------------------------------------------------------
MyCustomer m;
m.FromXML(pzMyXMLBuffer);
--------------------------------------------------------------------------------
 
or converting an objects state into XML
--------------------------------------------------------------------------------
MyCustomer m;
m.m_name="foo";
m.ToXML(pzMyXMLBuffer);
--------------------------------------------------------------------------------
 
<MyCustomer> is derived from a simple base class
with a virtual method that defines XML-Object tag mappings. 
MFC Dialogs derived from this type can "UpdateData"
so to say directly from XML into member CStrings that
are DDX bound to the GUI.
 
CORBA and RougeWave applications in Unix likewise
can serialize directly into RWCStrings and load object
state with almost-no overhead.
 
enjoy.  any Comments/Suggestions/Questions.......?
 

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.