Method method = c.getMethod(methodName, Element.class);
Node node = (Node) method.invoke(requestHandler, request);
response = (Element) node.getFirstChild();
}
catch (Exception ex) {
throw new RegistryException(ex);
}
if (log.isDebugEnabled()) {
log.debug("\nResponse message:\n" + XMLUtils.convertNodeToXMLString(response));
}
return response;