if (descriptor != null) {
try {
IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindow(event);
if (isDestination) {
TestDestinationDialog testDestinationDialog = new TestDestinationDialog(window.getShell(), name);
testDestinationDialog.open();
} else {
TestServerDialog testServerDialog = new TestServerDialog(window.getShell(), name);
testServerDialog.open();
}
} catch (Exception e) {