Hi,
I have an xsl or xml file containing xsl templates:
<xsl:template match="compcd" name="tata">
<compcd>
xsl:value-of select="string(ns0:LOCATIONSPEC[ns0:ASSETATTRID='VS_TYPE']/ns0:ALNVALUE) "</xsl:value-of>
</compcd>
</xsl:template>
<xsl:template match="compcd" name="dada">
<equipnum>
xsl:value-of select="string(ns0:FXSTAMDATASet/ns0:LOCATIONS/ns0:FXCOMPANYNAME)"</xsl :value-of>
</equipnum>
</xsl:template>
:
Etc
I have a noob question about this, in three quick steps, how do I:
1. Add these templates to a database
2. Put that db in a webservice/server
3. Connect to that database and query for the templates within another XSL file?
Pointers to the proper manual would be fine, thanks!
Best,
Simon