-
Bug
-
Resolution: Fixed
-
P2
-
9.1ur1
-
1.3
-
x86
-
other
We are hitting a CTS failure for the Appserver on AIX using the IBM JDK.
The exception that is being thrown originates in the com.sun.org.apache.xpath.internal.compiler.FuncLoader class, from function getFunction() (below).
Is there a reason to get a "javax.xml.transform.TransformerException: Application can't install his own xpath function." or can we workaround this problem for our AIX implementation?
com.sun.org.apache.xpath.internal.compiler.FuncLoader:
Function getFunction() throws TransformerException
{
try
{
String className = m_funcName;
if (className.indexOf(".") < 0) {
className = "com.sun.org.apache.xpath.internal.functions." + className;
}
//hack for loading only built-in function classes.
Function func = (Function) ObjectFactory.newInstance(
className, ObjectFactory.findClassLoader(), true);
//Sun's implementation use null to represent the bootstrap class loader.
if(func.getClass().getClassLoader() == null)
return func;
else
throw new TransformerException("Application can't install his own xpath function.");
}
catch (ObjectFactory.ConfigurationError e)
{
throw new TransformerException(e.getException());
The exception that is being thrown originates in the com.sun.org.apache.xpath.internal.compiler.FuncLoader class, from function getFunction() (below).
Is there a reason to get a "javax.xml.transform.TransformerException: Application can't install his own xpath function." or can we workaround this problem for our AIX implementation?
com.sun.org.apache.xpath.internal.compiler.FuncLoader:
Function getFunction() throws TransformerException
{
try
{
String className = m_funcName;
if (className.indexOf(".") < 0) {
className = "com.sun.org.apache.xpath.internal.functions." + className;
}
//hack for loading only built-in function classes.
Function func = (Function) ObjectFactory.newInstance(
className, ObjectFactory.findClassLoader(), true);
//Sun's implementation use null to represent the bootstrap class loader.
if(func.getClass().getClassLoader() == null)
return func;
else
throw new TransformerException("Application can't install his own xpath function.");
}
catch (ObjectFactory.ConfigurationError e)
{
throw new TransformerException(e.getException());