>For the script i tried: "<script>" , "<xsl:script>" when i positioned >it between the transform element and the other xsl:template nodes. >For the calling of the function in the script i tried "xsl:eval" (got >an exception that i can not use it in its position - i imagine it is >related to a namespace...). I also tried using <xsl:value > select="test()"> but i >got an exception stating that the function is not found.
This is a request for a lengthy tutorial, so you might be better off to get an XSLT book. Doug Tidwell's book might be a good choice for these topics. >I saw examples using msxsl:script and naming my own namespace with a >url reference - laxories i do not have. >Please help me so i will not be forced of using soulutions in >javascript after the transformation or manipulation over the xml data. If you can't find the function you need among the XSLT built-ins nor among the Xalan extensions, then you must write your own and give it your namespace. But maybe what you want the function to accomplish is achievable in non-extended XSLT, so you could start there. .................David Marston
