< prev index next >

test/java/rmi/Naming/legalRegistryNames/LegalRegistryNames.java

Print this page


   1 /*
   2  * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4254808
  27  * @summary Naming assumes '/' is present in relative URL; change in URL causes regression
  28  * @author Dana Burns
  29  * @library ../../testlibrary
  30  * @modules java.rmi/sun.rmi.registry
  31  *          java.rmi/sun.rmi.server
  32  *          java.rmi/sun.rmi.transport
  33  *          java.rmi/sun.rmi.transport.tcp
  34  * @build TestLibrary Legal LegalRegistryNames_Stub
  35  * @run main/othervm LegalRegistryNames

  36  */
  37 
  38 import java.net.InetAddress;
  39 import java.net.UnknownHostException;
  40 import java.rmi.Naming;
  41 import java.rmi.RemoteException;
  42 import java.rmi.Remote;
  43 import java.rmi.registry.LocateRegistry;
  44 import java.rmi.registry.Registry;
  45 import java.rmi.server.UnicastRemoteObject;
  46 import java.util.Enumeration;
  47 import java.util.Vector;
  48 
  49 /**
  50  * Ensure that all legal forms of Naming URLs operate with the
  51  * java.rmi.Naming interface.  This test requires using the default RMI Registry
  52  * port as it tests all of the RMI naming URL's, including the ones which do not
  53  * take a port (and therefore uses the default port).
  54  */
  55 public class LegalRegistryNames extends UnicastRemoteObject


   1 /*
   2  * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4254808
  27  * @summary Naming assumes '/' is present in relative URL; change in URL causes regression
  28  * @author Dana Burns
  29  * @library ../../testlibrary
  30  * @modules java.rmi/sun.rmi.registry
  31  *          java.rmi/sun.rmi.server
  32  *          java.rmi/sun.rmi.transport
  33  *          java.rmi/sun.rmi.transport.tcp
  34  * @build TestLibrary Legal LegalRegistryNames_Stub
  35  * @run main/othervm LegalRegistryNames
  36  * @key intermittent
  37  */
  38 
  39 import java.net.InetAddress;
  40 import java.net.UnknownHostException;
  41 import java.rmi.Naming;
  42 import java.rmi.RemoteException;
  43 import java.rmi.Remote;
  44 import java.rmi.registry.LocateRegistry;
  45 import java.rmi.registry.Registry;
  46 import java.rmi.server.UnicastRemoteObject;
  47 import java.util.Enumeration;
  48 import java.util.Vector;
  49 
  50 /**
  51  * Ensure that all legal forms of Naming URLs operate with the
  52  * java.rmi.Naming interface.  This test requires using the default RMI Registry
  53  * port as it tests all of the RMI naming URL's, including the ones which do not
  54  * take a port (and therefore uses the default port).
  55  */
  56 public class LegalRegistryNames extends UnicastRemoteObject


< prev index next >