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 April 17th, 2007, 09:01 AM
Authorized User
 
Join Date: Mar 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default Default Namespace does not display elements.

I have an Input XML document which has a default namspace.
This document is generated by a 3rd party system.

Code:
<FIXML xmlns="http://www.fixprotocol.org/FIXML-4-4">
    <Order Acct="1" ExDest="ExchDest">
        <Hdr Snt="2007-04-05T13:34:47"/>
        <Instrmt Issr="Barclays" MMY="200903"/>
    </Order>
</FIXML>
Now,if I use this namespace in my XSL style sheet,
no element gets displayed.

Code:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  
xmlns="http://www.fixprotocol.org/FIXML-4-4" >
<xsl:output method="xml"/>

<xsl:template match="FIXML">
<xsl:apply-templates  select ="Order"/>
</xsl:template>

<xsl:template match="Order">
<NewSingleOrder>

<ID>
<xsl:value-of select="@Acct"/> 
</ID>
</NewSingleOrder>
As the input XML is generated dynamically and given to me,I cannot
delete the namespace from the Input XML.It wouldnt be right?

How can I solve this? Please can you help?



 
Old April 17th, 2007, 09:29 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

I suggest you read the first post in this forum, specifically the links referring to namespaces.

--

Joe (Microsoft MVP - XML)
 
Old April 17th, 2007, 10:11 AM
Authorized User
 
Join Date: Mar 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Yes,I have solved the above issue.
Thanks,






Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding Additional Namespace and Prefixing Elements hangon XSLT 6 November 5th, 2007 09:29 PM
Default Namespace - XSLT 1.0 Geierwally XSLT 2 July 9th, 2007 11:08 AM
Dynamic Default Namespace EcceBozo XSLT 2 June 6th, 2007 04:05 PM
Working with non-Default namespace Elements/Attrib tclotworthy XSLT 3 February 8th, 2007 01:40 PM
Default Namespace (where is it?) bekim BOOK: ASP.NET Website Programming Problem-Design-Solution 4 June 12th, 2004 03:50 AM





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