Is it possible to get a unique long number in xslt?
I am accessing more than one time in a single translation.
I tried using using currentTimeStamp but it didn't work.
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs" xmlns:timeStamp="java.lang.System">
<xsl:template match="/">
<xsl:for-each select="Client">
<xsl:variable name="ClientPK1" select="concat('-',timeStamp:currentTimeMillis())"/>
<xsl:variable name="ClientPK2" select="concat('-',timeStamp:currentTimeMillis())"/>