本文整理汇总了Java中java.rmi.registry.LocateRegistry类的典型用法代码示例。如果您正苦于以下问题:Java LocateRegistry类的具体用法?Java LocateRegistry怎么用?Java LocateRegistry使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LocateRegistry类属于java.rmi.registry包,在下文中一共展示了LocateRegistry类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: unBind
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
/**
* <p>
* Un-bind the scheduler from an RMI registry.
* </p>
*/
private void unBind() throws RemoteException {
String host = resources.getRMIRegistryHost();
// don't un-export if we're not configured to do so...
if (host == null || host.length() == 0) {
return;
}
Registry registry = LocateRegistry.getRegistry(resources
.getRMIRegistryHost(), resources.getRMIRegistryPort());
String bindName = resources.getRMIBindName();
try {
registry.unbind(bindName);
UnicastRemoteObject.unexportObject(this, true);
} catch (java.rmi.NotBoundException nbe) {
}
getLog().info("Scheduler un-bound from name '" + bindName + "' in RMI registry");
}
示例2: setUpClass
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
@BeforeClass
public static void setUpClass() throws RemoteException, MalformedURLException, IOException {
Registry r = LocateRegistry.createRegistry(9999);
mbs = MBeanServerFactory.createMBeanServer();
person = new Test01_JavaIntrospection.Person("Alice Aho", 23);
person.knows = new Test01_JavaIntrospection.Person("Bob", 30);
JMXServiceURL url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost:9999/server");
cs = JMXConnectorServerFactory.newJMXConnectorServer(url, null, mbs);
if (cs == null) {
throw new RuntimeException("Could not setUpClass() for test! JMXConnectorServerFactory.newJMXConnectorServer FAILED (Returned null...)! Url: " + url + ", mbs: " + mbs);
}
cs.start();
System.out.println("Registry created / JMX connector started.");
}
示例3: getMBeanServer
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
/**
* Returns MBeans server for the Pogamut Platform. All MBeans connected from
* the platform should be registered in this server. There is also default
* RMI connector for this server running on service:jmx:rmi:///jndi/rmi://localhost:9999/server
* @return
* @throws cz.cuni.amis.utils.exception.PogamutException
*/
@Override
public synchronized MBeanServer getMBeanServer() throws PogamutException {
try {
if (!registryCreated) {
if (log.isLoggable(Level.WARNING)) log.warning("Creating registry at " + getRMIPort() + " ...");
LocateRegistry.createRegistry(getRMIPort());
registryCreated = true;
}
if (mBeanServer == null) {
if (log.isLoggable(Level.WARNING)) log.warning("Starting MBean server.");
//start a RMI registry
mBeanServer = new PogamutMBeanServer();
// also create connector for this server, server without connector
// would be unreachable outside this JVM
cs = JMXConnectorServerFactory.newJMXConnectorServer(getMBeanServerURL(), null, mBeanServer);
cs.start();
}
return mBeanServer;
} catch (Exception ex) {
throw new PogamutException("Error during JMX initialization.", ex);
}
}
示例4: run
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
@Override
public void run() {
//напишите тут ваш код
try {
//создание объекта для удаленного доступа
final Animal cat = new Cat("Barsik");
final Animal dog = new Dog("Palkan");
//создание реестра расшареных объетов
registry = LocateRegistry.createRegistry(2099);
//создание "заглушки" – приемника удаленных вызовов
Remote stubCat = UnicastRemoteObject.exportObject(cat, 0);
Remote stubDog = UnicastRemoteObject.exportObject(dog, 0);
//регистрация "заглушки" в реесте
registry.bind(BINDING_NAME1, stubCat);
registry.bind(BINDING_NAME2, stubDog);
} catch (RemoteException | AlreadyBoundException e) {
e.printStackTrace();
}
}
示例5: start
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
@Override
public void start() {
try {
JavaSecurityUtils.unlockJavaSecurity();
if( System.getSecurityManager() == null ) {
System.setSecurityManager( new SecurityManager() );
}
log.info( "Connecting to " + connectionDescription );
this.registry = LocateRegistry.getRegistry( this.ip, this.rmiPort );
log.info( "Successfully connected to " + connectionDescription );
} catch( Exception e ) {
throw new RmiException( "Error connecting to " + connectionDescription, e );
}
}
示例6: getRegistry
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
/**
* Locate or create the RMI registry for this exporter.
* @param registryHost the registry host to use (if this is specified,
* no implicit creation of a RMI registry will happen)
* @param registryPort the registry port to use
* @param clientSocketFactory the RMI client socket factory for the registry (if any)
* @param serverSocketFactory the RMI server socket factory for the registry (if any)
* @return the RMI registry
* @throws RemoteException if the registry couldn't be located or created
*/
protected Registry getRegistry(String registryHost, int registryPort,
RMIClientSocketFactory clientSocketFactory, RMIServerSocketFactory serverSocketFactory)
throws RemoteException {
if (registryHost != null) {
// Host explicitly specified: only lookup possible.
if (logger.isInfoEnabled()) {
logger.info("Looking for RMI registry at port '" + registryPort + "' of host [" + registryHost + "]");
}
Registry reg = LocateRegistry.getRegistry(registryHost, registryPort, clientSocketFactory);
testRegistry(reg);
return reg;
}
else {
return getRegistry(registryPort, clientSocketFactory, serverSocketFactory);
}
}
示例7: getRegistry
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
/**
* Locate or create the RMI registry.
* @param registryHost the registry host to use (if this is specified,
* no implicit creation of a RMI registry will happen)
* @param registryPort the registry port to use
* @param clientSocketFactory the RMI client socket factory for the registry (if any)
* @param serverSocketFactory the RMI server socket factory for the registry (if any)
* @return the RMI registry
* @throws java.rmi.RemoteException if the registry couldn't be located or created
*/
protected Registry getRegistry(String registryHost, int registryPort,
RMIClientSocketFactory clientSocketFactory, RMIServerSocketFactory serverSocketFactory)
throws RemoteException {
if (registryHost != null) {
// Host explicitly specified: only lookup possible.
if (logger.isInfoEnabled()) {
logger.info("Looking for RMI registry at port '" + registryPort + "' of host [" + registryHost + "]");
}
Registry reg = LocateRegistry.getRegistry(registryHost, registryPort, clientSocketFactory);
testRegistry(reg);
return reg;
}
else {
return getRegistry(registryPort, clientSocketFactory, serverSocketFactory);
}
}
示例8: getRemoteScheduler
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
protected RemotableQuartzScheduler getRemoteScheduler()
throws SchedulerException {
if (rsched != null) {
return rsched;
}
try {
Registry registry = LocateRegistry.getRegistry(rmiHost, rmiPort);
rsched = (RemotableQuartzScheduler) registry.lookup(schedId);
} catch (Exception e) {
SchedulerException initException = new SchedulerException(
"Could not get handle to remote scheduler: "
+ e.getMessage(), e);
throw initException;
}
return rsched;
}
示例9: getRegistry
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
private Registry getRegistry(int registryPort) throws RemoteException {
if (this.alwaysCreateRegistry) {
logger.info("Creating new RMI registry");
return LocateRegistry.createRegistry(registryPort);
}
if (logger.isInfoEnabled()) {
logger.info("Looking for RMI registry at port '" + registryPort + "'");
}
try {
// Retrieve existing registry.
Registry reg = LocateRegistry.getRegistry(registryPort);
testRegistry(reg);
return reg;
} catch (RemoteException ex) {
logger.debug("RMI registry access threw exception", ex);
logger.info("Could not detect RMI registry - creating new one");
// Assume no registry found -> create new one.
return LocateRegistry.createRegistry(registryPort);
}
}
示例10: startServer
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
private JMXConnectorServer startServer(int rmiPort) throws Exception {
System.out.println("DEBUG: Create RMI registry on port " + rmiPort);
LocateRegistry.createRegistry(rmiPort);
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
HashMap<String,Object> env = new HashMap<String,Object>();
JMXServiceURL url =
new JMXServiceURL("service:jmx:rmi:///jndi/rmi://127.0.0.1:" + rmiPort + "/jmxrmi");
JMXConnectorServer cs =
JMXConnectorServerFactory.newJMXConnectorServer(url, env, mbs);
cs.start();
System.out.println("DEBUG: Started the RMI connector server");
return cs;
}
示例11: getRegistroRMInodoRemoto
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
public static Registry getRegistroRMInodoRemoto (String identHost){
// Si no existe se crea el registro en el nodo local y en el puerto por defecto
// if (registroRMILocalCreado ) return registroRMILocal ;
try {
// hostRMI = getIPLocal();
// hostRMI = InetAddress.getLocalHost().getHostName();
//// hostRMI = InetAddress.getByName("SERTORIUS").toString();
// puertoRMIOrganizacionconfigurado = configuracionOrganizacion.getPropiedadesGlobales().getProperty("PuertoRMI");
// if (puertoRMIOrganizacionconfigurado != null)puertoRMI = Integer.parseInt (puertoRMIOrganizacionconfigurado);
// registroRMILocal = LocateRegistry.createRegistry(puertoRMI);
// registroRMILocalCreado = true;
return LocateRegistry.getRegistry(identHost);
} catch (Exception e) {
logger.error("Error al localizar el registro de la organizacion en el nodo--: "+ hostRMI + " Es posible que no se haya creado: Revisar la descripcion de la organizacion" );
trazas.aceptaNuevaTraza(new InfoTraza("AdaptadorRegRMI",
"La direccion IP del registro RMI es NULA "+ hostRMI + "-- Es posible que no se haya creado: Revisar la descripcion de la organizacion" ,
InfoTraza.NivelTraza.error));
//
return null;
}
}
示例12: getRemoteEntityFromHost
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
public static Remote getRemoteEntityFromHost(String host, int puerto, String identEntity) throws java.rmi.RemoteException {
Registry regCliente = LocateRegistry.getRegistry(host, puerto);
Object remoteEntity = null;
// ItfUsoRecursoTrazas trazas = Directorio.getRecursoTrazas();
try {
if (regCliente == null) {
// System.err.println("buscarAgenteRemoto regCliente == null");
// if (trazas != null)
trazas.aceptaNuevaTraza(new InfoTraza("AdaptadorRegRMI", " No se puede obtener la entidad : "+
identEntity + " No se consigue encontrar el registro RMI del Host :" + host + " puerto:" + puerto, NivelTraza.debug));
}
return regCliente.lookup(identEntity);
} catch (Exception ex) {
System.err.println("Fallo buscaAgenteRemoto\n"+ ex.getMessage());
trazas.aceptaNuevaTraza(new InfoTraza("AdaptadorRegRMI", " No se puede obtener la entidad : "+
identEntity + " No se consigue encontrar el registro RMI del Host :" + host + " puerto:"+ puerto , NivelTraza.debug));
// Logger.getLogger(ComunicacionAgentes.class.getName()).log(Level.SEVERE, null, ex);
return null;
}
}
示例13: startRMI
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
public static boolean startRMI() {
try {
registroRMI = LocateRegistry.createRegistry(puertoRMI);
System.err.println("Registro listo en " + puertoRMI);
return true;
} catch (Exception e) {
System.err.println("No se ha podido crear el registro RMI");
try {
registroRMI = LocateRegistry.getRegistry(puertoRMI);
System.err.println ("El registro ya existia (RMI listo)");
return true;
}
catch (Exception ex) {
System.err.println ("RMI no disponible!!\n" + ex.getMessage());
return false;
}
}
}
示例14: buscarAgenteRemoto
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
public static ItfUsoAgenteReactivo buscarAgenteRemoto(String ip, int puerto, String nombreAgente) throws java.rmi.RemoteException {
Registry regCliente = LocateRegistry.getRegistry(ip, puerto);
ItfUsoAgenteReactivo agenteRemoto = null;
// ItfUsoRecursoTrazas trazas = Directorio.getRecursoTrazas();
try {
if (regCliente == null) {
System.err.println("buscarAgenteRemoto regCliente == null");
if (trazas != null)
trazas.aceptaNuevaTraza(new InfoTraza("ControlRMI (null)", "No consigo encontrar al agente: "+
nombreAgente + " en ip:" + ip + " puerto:" + puerto, NivelTraza.error));
}
agenteRemoto = (ItfUsoAgenteReactivo) regCliente.lookup(nombreAgente);
return agenteRemoto;
} catch (Exception ex) {
System.err.println("Fallo buscaAgenteRemoto\n"+ ex.getMessage());
if (trazas != null)
trazas.aceptaNuevaTraza(new InfoTraza("ControlRMI (Excepcion)", "No consigo encontrar al agente: "+
nombreAgente + " en ip:" + ip + " puerto:" + puerto, NivelTraza.error));
// Logger.getLogger(ComunicacionAgentes.class.getName()).log(Level.SEVERE, null, ex);
return null;
}
}
示例15: getRemoteScheduler
import java.rmi.registry.LocateRegistry; //导入依赖的package包/类
protected RemotableQuartzScheduler getRemoteScheduler()
throws SchedulerException {
if (rsched != null) {
return rsched;
}
try {
Registry registry = LocateRegistry.getRegistry(rmiHost, rmiPort);
rsched = (RemotableQuartzScheduler) registry.lookup(schedId);
} catch (Exception e) {
SchedulerException initException = new SchedulerException(
"Could not get handle to remote scheduler: "
+ e.getMessage(), e);
initException
.setErrorCode(SchedulerException.ERR_COMMUNICATION_FAILURE);
throw initException;
}
return rsched;
}