RFR (JAXP enableExtensionFunctions): 8004476 XSLT Extension Functions Don't Work in WebStart
huizhe wang
huizhe.wang at oracle.com
Tue Oct 22 16:55:37 UTC 2013
Hi,
This is a new implementation property that is consistent with recent
additions as in JAXP 1.5 in that the scope and order are the same, refer
to http://docs.oracle.com/javase/tutorial/jaxp/properties/scope.html. By
default, feature enableExtensionFunctions is true. When
FEATURE_SECURE_PROCESSING is set to true, the property is set to false
allowing no extension functions. Setting FSP to false however will not
change the value.
The property enableExtensionFunctions is supported by the following API:
TransformerFactory factory = TransformerFactory.newInstance();
factory.setFeature(name, value);
XPathFactory factory = XPathFactory.newInstance();
factory.setFeature(name, value);
Webrevs:
http://cr.openjdk.java.net/~joehw/jdk8/8004476/webrev/
Thanks,
Joe
More information about the core-libs-dev
mailing list