< prev index next >

test/java/rmi/activation/Activatable/elucidateNoSuchMethod/ElucidateNoSuchMethod.java

Print this page




   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 /* @test
  25  * @bug 4128620
  26  * @summary synopsis: NoSuchMethodError should be elucidated
  27  * @author Laird Dornin
  28  *
  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 RMID ActivateMe ElucidateNoSuchMethod_Stub
  35  * @run main/othervm/policy=security.policy/timeout=240 ElucidateNoSuchMethod
  36  */
  37 
  38 import java.io.*;
  39 import java.rmi.*;
  40 import java.rmi.activation.*;
  41 import java.rmi.server.*;
  42 import java.rmi.registry.*;
  43 import java.util.Properties;
  44 
  45 public class ElucidateNoSuchMethod


  73 
  74     /**
  75      * Thread to deactivate object. First attempts to make object
  76      * inactive (via the inactive method).  If that fails (the
  77      * object may still have pending/executing calls), then
  78      * unexport the object forcibly.
  79      */
  80     public void run() {
  81         ActivationLibrary.deactivate(this, getID());
  82     }
  83 
  84     public static void main(String[] args) {
  85 
  86         System.out.println("\nRegression test for 4128620 \n");
  87 
  88         TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
  89 
  90         RMID rmid = null;
  91 
  92         try {
  93             RMID.removeLog();
  94             rmid = RMID.createRMID();
  95             rmid.start();
  96 
  97             /* Cause activation groups to have a security policy that will
  98              * allow security managers to be downloaded and installed
  99              */
 100             Properties p = new Properties();
 101             // this test must always set policies/managers in its
 102             // activation groups
 103             p.put("java.security.policy",
 104                   TestParams.defaultGroupPolicy);
 105             p.put("java.security.manager",
 106                   TestParams.defaultSecurityManager);
 107 
 108             System.err.println("Create activation group in this VM");
 109             ActivationGroupDesc groupDesc =
 110                 new ActivationGroupDesc(p, null);
 111             ActivationSystem system = ActivationGroup.getSystem();
 112             ActivationGroupID groupID = system.registerGroup(groupDesc);
 113             ActivationGroup.createGroup(groupID, groupDesc, 0);
 114 
 115             System.err.println("Creating descriptor");




   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 /* @test
  25  * @bug 4128620 8085192
  26  * @summary synopsis: NoSuchMethodError should be elucidated
  27  * @author Laird Dornin
  28  *
  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 RMID ActivateMe ElucidateNoSuchMethod_Stub
  35  * @run main/othervm/policy=security.policy/timeout=240 ElucidateNoSuchMethod
  36  */
  37 
  38 import java.io.*;
  39 import java.rmi.*;
  40 import java.rmi.activation.*;
  41 import java.rmi.server.*;
  42 import java.rmi.registry.*;
  43 import java.util.Properties;
  44 
  45 public class ElucidateNoSuchMethod


  73 
  74     /**
  75      * Thread to deactivate object. First attempts to make object
  76      * inactive (via the inactive method).  If that fails (the
  77      * object may still have pending/executing calls), then
  78      * unexport the object forcibly.
  79      */
  80     public void run() {
  81         ActivationLibrary.deactivate(this, getID());
  82     }
  83 
  84     public static void main(String[] args) {
  85 
  86         System.out.println("\nRegression test for 4128620 \n");
  87 
  88         TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
  89 
  90         RMID rmid = null;
  91 
  92         try {
  93             rmid = RMID.launch();


  94 
  95             /* Cause activation groups to have a security policy that will
  96              * allow security managers to be downloaded and installed
  97              */
  98             Properties p = new Properties();
  99             // this test must always set policies/managers in its
 100             // activation groups
 101             p.put("java.security.policy",
 102                   TestParams.defaultGroupPolicy);
 103             p.put("java.security.manager",
 104                   TestParams.defaultSecurityManager);
 105 
 106             System.err.println("Create activation group in this VM");
 107             ActivationGroupDesc groupDesc =
 108                 new ActivationGroupDesc(p, null);
 109             ActivationSystem system = ActivationGroup.getSystem();
 110             ActivationGroupID groupID = system.registerGroup(groupDesc);
 111             ActivationGroup.createGroup(groupID, groupDesc, 0);
 112 
 113             System.err.println("Creating descriptor");


< prev index next >