Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT 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 February 12th, 2007, 03:07 AM
Registered User
 
Join Date: Feb 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to ignore namespaces in input xml file

Currently, this is my input xml file
Code:
<root>...<body>..</body>...</root>
and this my xsl style sheet.
Code:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
     <xsl:apply-templates/> 
</xsl:template>
<xsl:template match="body">
     <xsl:apply-templates select="WorkflowProcess"/>
</xsl:template>
and so forth............
The problem is that this is my new xml input file.
Code:
<root xmlns="http://www.wfmc.org/2002/XPDL1.0" xmlns:xpdl="http://www.wfmc.org/2002/XPDL1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Id="wrkflw6" 
Name="wrkflw6" xsi:schemaLocation="http://www.wfmc.org/2002/XPDL1.0 
http://wfmc.org/standards/docs/TC-1025_schema_10_xpdl.xsd">...
<body>....</body>....
</root>
With this inclusion of these namespaces, my outfile was no longer correctly outputted. It just skips past my template match and ouputs the input file only.

The issue is that all these namespaces like xpdl and xsi are of no use to me.Thus I want to alter the xsl file such that it can exclude all these namespaces in the input xml file and do the transformation as per normal.

I am using Pyana engine to do my XSLT conversion in windows XP.

Any help is appreciated.


 
Old February 12th, 2007, 04:10 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Please google for "XSLT FAQ default namespace"

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old February 14th, 2007, 04:14 AM
Registered User
 
Join Date: Feb 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi pple,
        get all your questions pertaining to namespaces answered here.

        http://www.dpawson.co.uk/xsl/sect2/N5536.html
Cheers







Similar Threads
Thread Thread Starter Forum Replies Last Post
Multiple input xml / get data from other xml file elayaraja.s XSLT 3 July 25th, 2008 06:59 AM
cant reach data in xml with namespaces TPP XSLT 1 March 24th, 2006 11:47 AM
Ignore Comma in Line Input echovue Access 4 November 2nd, 2005 10:16 AM
Confused about XML namespaces planoie XSLT 2 June 2nd, 2005 04:23 AM
XML Namespaces billy_bob_the_3rd XML 1 January 31st, 2005 03:41 PM





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