beanName = ObjectName.getInstance(name);
boolean notifications = server.isInstanceOf(beanName, NotificationBroadcaster.class.getName());
if (notifications && file != null && file.exists()) {
listener = new FileNotificationListener(file);
server.addNotificationListener(beanName, listener, null, null);
}
result = server.invoke(beanName, operationName, parameterList.toArray(), signatureList.toArray(new String[0]));
} catch (Exception e) {
throw new OperationFailedException(e.getMessage(), e, new ModelNode().set(e.getMessage()));
} finally {