[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

Validation, inspect type definitions of PSVI

Andrew Welch andrew.j.welch at gmail.com
Thu Sep 20 11:23:19 PDT 2007


  Validation
On 9/20/07, Torsten Grust <http://x-query.com/mailman/listinfo/talk> wrote:
> I'm looking for a validating parser that can expose the PSVI —
> the annotated type definition would be sufficient even — after
> successful validation of an input XML document.
>
> A command-line tool that, for example, serializes its input document
> annotated with xsi:type attributes would be just great, but I'll be
> grateful for any hint.


You could do an identity transform that uses Saxon's type-annotation()
extension to attach a type attribute to each element... something
like:

<xsl:template match="node()">
	<xsl:copy>
		<xsl:copy-of select="@*"/>
		<xsl:attribute name="type" select="saxon:type-annotation(.)"/>
		<xsl:apply-templates select="node()"/>
	</xsl:copy>
</xsl:template>



-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/



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
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-2007 All Rights Reserved.