service = (XPathQueryService) root.getService( "XQueryService", "1.0" );
//Check the configuration file to see if Java binding is enabled
//if it is not enabled then we expect an exception when trying to
//perform Java binding.
Configuration config = new Configuration();
String javabinding = (String)config.getProperty(FunctionFactory.PROPERTY_ENABLE_JAVA_BINDING);
if(javabinding != null)
{
if(javabinding.equals("yes"))
{
javabindingenabled = true;