📄 rmiservicecontainer.java
字号:
/* * $Id: RmiServiceContainer.java 5462 2005-08-05 18:35:48Z jonesde $ * * Copyright (c) 2003 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */package org.ofbiz.service.rmi;import java.rmi.Naming;import java.rmi.RemoteException;import java.rmi.server.RMIClientSocketFactory;import java.rmi.server.RMIServerSocketFactory;import javax.naming.InitialContext;import javax.naming.NamingException;import org.ofbiz.base.container.Container;import org.ofbiz.base.container.ContainerConfig;import org.ofbiz.base.container.ContainerException;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.service.GenericDispatcher;import org.ofbiz.service.LocalDispatcher;/** * RMI Service Engine Container / Dispatcher * * @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @version $Rev: 5462 $ * @since 3.0 */public class RmiServiceContainer implements Container { public static final String module = RmiServiceContainer.class.getName(); protected RemoteDispatcherImpl remote = null; protected String configFile = null; protected String name = null; // Container methods /** * @see org.ofbiz.base.container.Container#init(java.lang.String[], java.lang.String) */ public void init(String[] args, String configFile) { this.configFile = configFile; } public boolean start() throws ContainerException { // get the container config ContainerConfig.Container cfg = ContainerConfig.getContainer("rmi-dispatcher", configFile); ContainerConfig.Container.Property initialCtxProp = cfg.getProperty("use-initial-context"); ContainerConfig.Container.Property lookupHostProp = cfg.getProperty("bound-host"); ContainerConfig.Container.Property lookupPortProp = cfg.getProperty("bound-port"); ContainerConfig.Container.Property lookupNameProp = cfg.getProperty("bound-name"); ContainerConfig.Container.Property delegatorProp = cfg.getProperty("delegator-name"); ContainerConfig.Container.Property clientProp = cfg.getProperty("client-factory"); ContainerConfig.Container.Property serverProp = cfg.getProperty("server-factory"); // check the required lookup-name property if (lookupNameProp == null || lookupNameProp.value == null || lookupNameProp.value.length() == 0) { throw new ContainerException("Invalid lookup-name defined in container configuration"); } else { this.name = lookupNameProp.value; } // check the required delegator-name property if (delegatorProp == null || delegatorProp.value == null || delegatorProp.value.length() == 0) { throw new ContainerException("Invalid delegator-name defined in container configuration"); } String useCtx = initialCtxProp == null || initialCtxProp.value == null ? "false" : initialCtxProp.value; String host = lookupHostProp == null || lookupHostProp.value == null ? "localhost" : lookupHostProp.value; String port = lookupPortProp == null || lookupPortProp.value == null ? "1099" : lookupPortProp.value; boolean clientAuth = ContainerConfig.getPropertyValue(cfg, "ssl-client-auth", false); // setup the factories RMIClientSocketFactory csf = null; RMIServerSocketFactory ssf = null; // get the classloader ClassLoader loader = Thread.currentThread().getContextClassLoader(); // load the factories if (clientProp != null && clientProp.value != null && clientProp.value.length() > 0) { try { Class c = loader.loadClass(clientProp.value); csf = (RMIClientSocketFactory) c.newInstance(); } catch (Exception e) { throw new ContainerException(e); } } if (serverProp != null && serverProp.value != null && serverProp.value.length() > 0) { try { Class c = loader.loadClass(serverProp.value); ssf = (RMIServerSocketFactory) c.newInstance(); } catch (Exception e) { throw new ContainerException(e); } } // set the client auth flag on our custom SSL socket factory if (ssf != null && ssf instanceof org.ofbiz.service.rmi.socket.ssl.SSLServerSocketFactory) { ((org.ofbiz.service.rmi.socket.ssl.SSLServerSocketFactory) ssf).setNeedClientAuth(clientAuth); } // get the delegator for this container GenericDelegator delegator = GenericDelegator.getGenericDelegator(delegatorProp.value); // create the LocalDispatcher LocalDispatcher dispatcher = new GenericDispatcher(name, delegator); // create the RemoteDispatcher try { remote = new RemoteDispatcherImpl(dispatcher, csf, ssf); } catch (RemoteException e) { throw new ContainerException("Unable to start the RMI dispatcher", e); } if (!useCtx.equalsIgnoreCase("true")) { // bind RMIDispatcher to RMI Naming (Must be JRMP protocol) try { Naming.rebind("//" + host + ":" + port + "/" + name, remote); } catch (RemoteException e) { throw new ContainerException("Unable to bind RMIDispatcher to RMI", e); } catch (java.net.MalformedURLException e) { throw new ContainerException("Invalid URL for binding", e); } } else { // bind RMIDispatcher to InitialContext (must be RMI protocol not IIOP) try { InitialContext ic = new InitialContext(); ic.rebind(name, remote); } catch (NamingException e) { throw new ContainerException("Unable to bind RMIDispatcher to JNDI", e); } // check JNDI try { InitialContext ic = new InitialContext(); Object o = ic.lookup(name); if (o == null) { throw new NamingException("Object came back null"); } } catch (NamingException e) { throw new ContainerException("Unable to lookup bound objects", e); } } return true; } public void stop() throws ContainerException { remote.deregister(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -