OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: Creation of XML documents

[ Lists Home | Date Index | Thread Index ]
  • From: "Samuel R. Blackburn" <sblackbu@erols.com>
  • To: "Richard Anderson" <RJA@arpsolutions.demon.co.uk>
  • Date: Sat, 14 Nov 1998 06:52:30 -0500

If a non-validating C++ library will help, take a look at the
XML classes in the freeware Win32 Foundation Classes (WFC)
at http://ourworld.compuserve.com/homepages/sam_blackburn/wfc.htm

HTH,

Sam

-----Original Message-----
From: Richard Anderson <RJA@arpsolutions.demon.co.uk>
To: XMLDEV <xml-dev@ic.ac.uk>; Wester, JJ (ICT) <j.j.wester@kpn-telecom.nl>
Date: Friday, November 13, 1998 10:26 AM
Subject: Re: Creation of XML documents


>> I would like to have a 'library' to which the application developer
>> could say 'using this DTD please
>> instantiate a XML document and help me to fill it in'.
>
>I've got a C++ toolkit that is under development that sort of mets these
>requirements. It has a SAX+DOM interface.   ( The COM variant will follow
>very shortly for use in VB etc )
>
>Using the SAX interface you can build a 'template' DOM and then fill in the
>missing bits.
>
>The toolkit has *no* dependancies on MSIE etc.
>
>Heres some sample code for creating an XML EMAIL:
>
>************ CODE SECTION START ****************
>
>pDoc = pDOMAPI->createDocument();
> pRootElement = pDoc->createElement( L"EMAIL" );
>pFrom = pDoc->createElement( L"From" );
> pRootElement->appendChild( pFrom );
>pFrom->setAttribute( L"Priority", L"High" );
> pFrom->setAttribute( L"DeliveryReceipt", L"Yes" );
> pFrom->setAttribute( L"ReturnReceipt", L"Yes" );
>
>pText = pDoc->createTextNode( L"RJA@arpsolutions.demon.co.uk" );
>pFrom->appendChild( pText );
>
>pTo = pDoc->createElement( L"To" );
>pRootElement->appendChild( pTo );
>pText = pDoc->createTextNode( L"enquires@arpsolutions.demon.co.uk" );
>pTo->appendChild( pText );
>
>pSubject = pDoc->createElement( L"Subject" );
>pRootElement->appendChild( pSubject );
>pText = pDoc->createTextNode( L"XML/DOM/SAX C++ Toolkit" );
>pSubject->appendChild( pText );
>
>pComment = pDoc->createComment(L"Main body of Email follows");
>pRootElement->appendChild( pComment );
>pBody = pDoc->createElement( L"Body" );
>pRootElement->appendChild( pBody );
>
>pText = pDoc->createTextNode( L"Seems OK so far." );
>pBody->appendChild( pText );
>
>pText = pDoc->createTextNode( L"I'll have to try harder to break it." );
>pBody->appendChild( pText );
>
>pPI = pDoc->createProcessingInstruction(L"PI",
>                                          L"That's all folks!" );
>
>pCC = pDoc->createElement( L"CC" );
>pText = pDoc->createTextNode( L"xml_toolkit@arpsolutions.demon.co.uk" );
>pCC->insertBefore( pText, NULL );
>pRootElement->insertBefore( pCC,pTo );
>
>CStdioWideStream stream;
>pDOMAPI->writeXML( pRootElement, &stream );
>
>*********** CODE SECTION END ***************
>
>If your interested I can send you the C++ alpha toolkit.
>
>Regards,
>
>Richard.
>
>***********************************************
>* E-Mail  mailto:RJA@arpsolutions.demon.co.uk *
>* WEB     http://www.arpsolutions.demon.co.uk *
>***********************************************
>
>
>
>xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
>Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
>To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
>(un)subscribe xml-dev
>To subscribe to the digests, mailto:majordomo@ic.ac.uk the following
message;
>subscribe xml-dev-digest
>List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
>


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)





 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS