/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @bug 4095165
* @bug 4140736
* @summary synopsis: rmid should waitFor restartable objects that crash and restart them
* @author Ann Wollrath
*
* @library ../../../testlibrary
* @build TestLibrary RMID ActivateMe RestartCrashedService_Stub
* @run main/othervm/policy=security.policy/timeout=240 RestartCrashedService
*/
public class RestartCrashedService
implements ActivateMe
{
throws ActivationException, RemoteException
{
try {
} catch (Exception e) {
return;
}
}
}
synchronized (lock) {
}
}
}
public void resetResponders() {
responders.clear();
}
return new RestartCrashedService();
}
public void crash() {
}
return id;
}
try {
/* Cause activation groups to have a security policy that will
* allow security managers to be downloaded and installed
*/
final Properties p = new Properties();
// activation groups
p.put("java.security.policy",
p.put("java.security.manager",
/*
* Create unicast object to be contacted when service is activated.
*/
unicastObj = new RestartCrashedService();
/*
* Create and register descriptors for a restartable and
* non-restartable service (respectively) in a group other than
* this VM's group.
*/
new ActivationGroupDesc(p, null);
restartMobj, true);
activateMobj, false);
/*
* Restart rmid; it should start up the restartable service
*/
/*
* Wait for service to be automatically restarted.
*/
int repeat = 1;
do {
for (int i = 0; i < 15; i++) {
synchronized (lock) {
"restarted service");
break;
}
} else {
break;
}
}
}
null);
/*
* Make sure activatable services wasn't automatically
* restarted.
*/
synchronized (lock) {
"restart activatable service");
} else {
null);
}
} else {
null);
}
}
if (repeat > 0) {
try {
} catch (Exception e) {
}
}
} while (repeat-- > 0);
} catch (Exception e) {
} finally {
}
}
}