xsl-list
[Top] [All Lists]

[xsl] Adding *xmlns* attribute dynamically

2007-01-12 03:40:40
Hi,

I am new to XSL and writing a XSL to transform list of XSDs to another list
of XSD.

The issue is, i want to assign a dynamic value for "xmlns" attribute in
<xs:schema>. From the mailing archieves i see that i cannot add "xmlns" as
an attribute. If i try below

*<xs:schema>
   <xsl:attribute name="xmlns">
      <xsl:value-of select="$ReqResName" />
 </xsl:attribute>
</xs:schema>
*
where "ReqResName" is a variable(<xsl:variable>), i am getting the below
error.

*Illegal value used for attribute name: name*

I believe this is because of adding "xmlns" as an attribute. If you add the
attribute "xmlns" directly to the tag, you cant change the attribute value
dynamically. So,

*<xs:schema version="1.0" xmlns="????????">some child elemnsts</xs:schema>*

The above example does not give you a way to change the value represented by
"??????" dynamically. I mean to say we cant access any XSL variable in the
place of "????????".

So if i want to change the value of "xmlns" attribute in "<xs:schema>", what
is the solution?

Thanks in advance.

Regards,
Kishore

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>