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 8th, 2007, 01:11 PM
Authorized User
 
Join Date: Feb 2007
Posts: 51
Thanks: 3
Thanked 0 Times in 0 Posts
Default Working with non-Default namespace Elements/Attrib

Hello, I am having no luck retrieving attribute values defined against non-default namespaces. As a specific example, I cannot retrieve the value of xsi:type as defined in the ownedMember element below:

<ownedMember name="ACE Actors" publish:modelname="(II) Organizational View" publish:qualifiedname="(II) Organizational View::ACE Actors" publish:toplevelguid="" xmi:id="_CWKPgF-dEduzD7dnHHUv4w" xsi:type="uml:Package">

All namespaces represented in the element above have been declared in my xsl file, but I must be retrieving wrong. Why is the following always returning the correct value:

<xsl:value-of select="@name"/>

but the following always returns nothing:

<xsl:value-of select="@xsi:type"/>

have also tried without success:

<xsl:value-of select="@type"/>


Any insights are greatly appreciated. Thank you


 
Old February 8th, 2007, 01:21 PM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Are you absolutely sure you've declared the mapping for xsi correctly? Should be 'http://www.w3.org/2001/XMLSchema-instance', don't forget it's case-sensitive.

--

Joe (Microsoft MVP - XML)
 
Old February 8th, 2007, 01:34 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

You say that you've declared all the required namespaces, but you provide no evidence of it; the fact that you're not retrieving the attribute suggests strongly that you have declared the xsi prefix but have bound it to the wrong URI.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old February 8th, 2007, 01:40 PM
Authorized User
 
Join Date: Feb 2007
Posts: 51
Thanks: 3
Thanked 0 Times in 0 Posts
Default

Thank you! I did indeed have an error in my declaration. I double-checked, corrected it, and now it works as expected. Thanks :D






Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding Additional Namespace and Prefixing Elements hangon XSLT 6 November 5th, 2007 09:29 PM
Dynamic Default Namespace EcceBozo XSLT 2 June 6th, 2007 04:05 PM
Default Namespace does not display elements. AjayLuthria XSLT 2 April 17th, 2007 10:11 AM
How can I change the default namespace allanhu BOOK: ASP.NET Website Programming Problem-Design-Solution 1 November 1st, 2004 01:15 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.