public MTPDescriptor installMTP(String address, String className) throws IMTPException, ServiceException, MTPException {
try {
GenericCommand cmd = new GenericCommand(H_INSTALLMTP, NAME, null);
cmd.addParam(address);
cmd.addParam(className);
Node n = getNode();
Object result = n.accept(cmd);
if((result != null) && (result instanceof Throwable)) {