private void notifyRemoteListener(String rmiProperty) throws Exception {
int rmiPort = Integer.parseInt(rmiProperty);
Registry registry = LocateRegistry.getRegistry(rmiPort);
Remote remote = registry.lookup("PaxExamNotifier");
Notifier notifier = (Notifier) remote;
notifier.send("bundle org.ops4j.pax.exam.sample9.pde started");
}
/**
* Optionally blocks framework shutdown for a shutdown timeout regression test.
*/