RE: [xsl] Cannot Access Attribute with colon

Subject: RE: [xsl] Cannot Access Attribute with colon
From: "Yates, Danny (ANTS)" <danny.yates@xxxxxxxxxx>
Date: Wed, 16 Oct 2002 15:23:26 +0100
Hi Karen,

Have you also defined the same namespace in your XSL? Remember
that the namespace alias (in this case 'xlink') is only a short
name that refers to the namespace URI (http://www.w3.org/1999/xlink)
So, you need to make sure that you have declared the same
namespace URI in your stylesheet. For the avoidance of confusion,
I suggest using the same alias for it! Something like:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
    xmlns:xlink="http://www.w3.org/1999/xlink";>

Regards,

Dan.

-- 
Danny Yates
Technical Architect
Abbey National Treasury Services
E-mail: Danny.Yates@xxxxxxxxxx
Phone: +44 20 7612 4017
Fax: +44 20 7612 4342


-----Original Message-----
From: Clifford, Karen [mailto:Karen.Clifford@xxxxxxxxxxxx]
Sent: 16 October 2002 14:55
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: [xsl] Cannot Access Attribute with colon


Hi All, 

I have xml similar to the following:
<hotgraphic>
			<hotspot>
				<link xlink:show="new"
xlink:href="btCommBronze" targetfile="btccomxx">Bronze Schedule</link>

I need to access the values of the xlink:show and xlink:href attributes,
unfortunately using '@xlink:show' does not work, (ie <xsl:value-of
select="@xlink:show"/>) it doesnt seem to like the colon ' :'   

I dont know if this is of any use but the dtd contains the following for the
link element:


<!ENTITY % linkAttrs 'xmlns:xlink    CDATA       #FIXED
"http://www.w3.org/1999/xlink";
		xlink:type  (simple)    #FIXED "simple" 
		targetfile CDATA #REQUIRED
		xlink:show   (new | replace )  	"replace" 
		xlink:href      CDATA          	#REQUIRED '>

<!ATTLIST link
	%linkAttrs;
>


Any ideas?


Thanks a million

Karen


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


***************************************************************************
This communication (including any attachments) contains confidential information.  If you are not the intended recipient and you have received this communication in error, you should destroy it without copying, disclosing or otherwise using its contents.  Please notify the sender immediately of the error.

Internet communications are not necessarily secure and may be intercepted or changed after they are sent.  Abbey National Treasury Services plc does not accept liability for any loss you may suffer as a result of interception or any liability for such changes.  If you wish to confirm the origin or content of this communication, please contact the sender by using an alternative means of communication.

This communication does not create or modify any contract and, unless otherwise stated, is not intended to be contractually binding.

Abbey National Treasury Services plc. Registered Office:  Abbey National House, 2 Triton Square, Regents Place, London NW1 3AN.  Registered in England under Company Registration Number: 2338548.  Regulated by the Financial Services Authority (FSA).
***************************************************************************


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread