Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XML
|
XML General XML discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XML section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 27th, 2004, 09:45 AM
Registered User
 
Join Date: Aug 2004
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to validate a node in C++

Hello,

I want to validate a particular node in an XML document. I am using MSXML4. The validate method validates the whole DOM document. Is there a way to simply validate a node???

Thanks in Advance

Regards,

ThunderBird

 
Old August 27th, 2004, 11:00 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

If you'll excuse me plugging my own technology, this is something that becomes much easier with a schema-aware XSLT or XQuery processor such as Saxon-SA (www.saxonica.com). For example, in XSLT 2.0 you can do:

<xsl:import-schema namespace="..."/>

<xsl:copy-of select="some/path/expression" validation="strict"/>

or alternatively

<xsl:copy-of select="some/path/expression" type="xyz:addressType"/>

Michael Kay

Michael Kay
http://saxon.sf.net/
 
Old August 27th, 2004, 11:22 AM
Registered User
 
Join Date: Aug 2004
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks!! but I am specifically looking that how this can be achived using MSXML 4.0 in c++.

ThunderBird






Similar Threads
Thread Thread Starter Forum Replies Last Post
The reference node is not a child of this node.XSL XMLUser XSLT 2 February 25th, 2008 05:22 AM
how to append child node after an node in XML + C# vishnu108mishra XML 5 November 13th, 2007 05:30 AM
Missing Node (Node data) pashworth XSLT 3 January 29th, 2007 12:39 PM
Copying Source Node attributes to output node pvsat XSLT 2 November 3rd, 2005 09:46 AM
document node order vs sort node order. ladyslipper98201 XSLT 2 June 5th, 2003 11:06 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.