Lines Matching refs:port

44  * to create a remote object registry that accepts calls on a specific port.
66 * the local host on the default registry port of 1099.
80 * the local host on the specified <code>port</code>.
82 * @param port port on which the registry accepts requests
87 public static Registry getRegistry(int port)
90 return getRegistry(null, port);
95 * specified <code>host</code> on the default registry port of 1099. If
111 * specified <code>host</code> and <code>port</code>. If <code>host</code>
115 * @param port port on which the registry accepts requests
120 public static Registry getRegistry(String host, int port)
123 return getRegistry(host, port, null);
129 * <code>port</code>. Communication with this remote registry will
132 * remote <code>host</code> and <code>port</code>.
135 * @param port port on which the registry accepts requests
144 public static Registry getRegistry(String host, int port,
150 if (port <= 0)
151 port = Registry.REGISTRY_PORT;
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>.
192 * <code>Registry</code> instance and the specified <code>port</code> as
197 * @param port the port on which the registry accepts requests
202 public static Registry createRegistry(int port) throws RemoteException {
203 return new RegistryImpl(port);
210 * requests on the given <code>port</code> using a
218 * <code>Registry</code> instance, the specified <code>port</code>, the
225 * @param port port on which the registry accepts requests
234 public static Registry createRegistry(int port,
239 return new RegistryImpl(port, csf, ssf);