2

Java UUID クラスを使用して乱数を生成しようとしています。

<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:uuid="java:java.util.UUID">
<xsl:template match="/">
<xsl:variable name="uid" select="uuid:randomUUID()"/>
<ClientPK><xsl:value-of select="$uid"/></ClientPK>

エラー

Cannot find a matching 0-argument function named {java:java.util.UUID}randomUUID().
  Note that direct calls to Java methods are not available under Saxon-HE
4

1 に答える 1

4

http://saxonica.com/documentation/index.html#!extensibilityを参照してください。Saxon 9 を使用し、その機能 (再帰拡張関数と呼ばれる) を使用する場合は、PE または EE のライセンスが必要です。

于 2013-09-25T12:30:10.087 に答える