I need to create the xsl for the following tag:
<role roletype="Learner">
Learner is held in a variable labeled $wsRole.
This code is not working:
<xsl:variable name="fullWsRole">
<xsl:value-of select="concat('"', $wsRole,'"')"/>
</xsl:variable>
<role roletype="{$fullWsRole}">
</role>
How do I create the node
<role roletype="Learner"> ?
