Lines Matching refs:host

43  * remote object registry on a particular host (including the local host), or
47 * connection to the remote host. It simply creates a local reference to
49 * the remote host. Therefore, a subsequent method invocation to a remote
66 * the local host on the default registry port of 1099.
80 * the local host on the specified <code>port</code>.
95 * specified <code>host</code> on the default registry port of 1099. If
96 * <code>host</code> is <code>null</code>, the local host is used.
98 * @param host host for the remote registry
103 public static Registry getRegistry(String host)
106 return getRegistry(host, Registry.REGISTRY_PORT);
111 * specified <code>host</code> and <code>port</code>. If <code>host</code>
112 * is <code>null</code>, the local host is used.
114 * @param host host for the remote registry
120 public static Registry getRegistry(String host, int port)
123 return getRegistry(host, port, null);
128 * <code>Registry</code> on the specified <code>host</code> and
132 * remote <code>host</code> and <code>port</code>.
134 * @param host host for the remote registry
144 public static Registry getRegistry(String host, int port,
153 if (host == null || host.length() == 0) {
154 // If host is blank (as returned by "file:" URL in 1.0.2 used in
155 // java.rmi.Naming), try to convert to real local host name so
158 host = java.net.InetAddress.getLocalHost().getHostAddress();
161 host = "";
166 * Create a proxy for the registry with the given host, port, and
177 new TCPEndpoint(host, port, csf, null),
187 * host that accepts requests on the specified <code>port</code>.
208 * host that uses custom socket factories for communication with that