if (_routeURI != null) {
_orb.addRoute(_uri, _routeURI);
}
Registry serverRegistry = _orb.getRegistry();
Proxy proxy = _orb.exportObject(new ExceptionServiceImpl());
serverRegistry.bind(EXCEPTION_SERVICE, proxy);
// get a proxy to the registry, and look up the service
Registry clientRegistry = _orb.getRegistry(getConnectionProperties());
_service = (ExceptionService) clientRegistry.lookup(EXCEPTION_SERVICE);