169N/A/*
2362N/A * Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/* @test
0N/A * @bug 4513223
0N/A * @summary After an instance of UnicastRemoteObject has been unexported,
0N/A * if it gets marshalled, an InternalError should not be thrown; instead,
0N/A * the marshalling should succeed. Also, if its "local" LiveRef gets
0N/A * marshalled, by way of the stub returned by RemoteObject.toStub, for
0N/A * example, then that should also succeed, instead of throwing an
0N/A * IOException (see fixes for bugids 4353388, 4017232). This test
0N/A * handles the case where the impl's RemoteRef is a UnicastServerRef2.
0N/A * @author Peter Jones
0N/A * @author Ann Wollrath
0N/A *
5551N/A * @build MarshalAfterUnexport2 MarshalAfterUnexport2_Stub
0N/A * @run main/othervm MarshalAfterUnexport2
0N/A */
0N/A
0N/Aimport java.rmi.MarshalledObject;
0N/Aimport java.rmi.Remote;
0N/Aimport java.rmi.RemoteException;
0N/Aimport java.rmi.server.RemoteObject;
0N/Aimport java.rmi.server.UnicastRemoteObject;
0N/A
0N/Apublic class MarshalAfterUnexport2
0N/A extends UnicastRemoteObject
0N/A implements Receiver
0N/A{
0N/A public MarshalAfterUnexport2() throws RemoteException {
169N/A super(0, null, null);
0N/A }
0N/A
0N/A public void receive(Remote obj) {
0N/A }
0N/A
0N/A public static void main(String[] args) throws Exception {
169N/A
169N/A System.err.println("\nRegression test for bug 4513223\n");
0N/A
169N/A Remote impl2 = null;
169N/A try {
169N/A Remote impl = new MarshalAfterUnexport2();
169N/A System.err.println(
169N/A "created impl extending URO (with a UnicastServerRef2): " +
169N/A impl);
0N/A
169N/A Receiver stub = (Receiver) RemoteObject.toStub(impl);
169N/A System.err.println("stub for impl: " + stub);
169N/A
169N/A UnicastRemoteObject.unexportObject(impl, true);
169N/A System.err.println("unexported impl");
0N/A
169N/A impl2 = new MarshalAfterUnexport2();
169N/A Receiver stub2 = (Receiver) RemoteObject.toStub(impl2);
0N/A
169N/A System.err.println("marshalling unexported object:");
169N/A MarshalledObject mobj = new MarshalledObject(impl);
0N/A
169N/A System.err.println("passing unexported object via RMI-JRMP:");
169N/A stub2.receive(stub);
0N/A
169N/A System.err.println("TEST PASSED");
169N/A } finally {
169N/A if (impl2 != null) {
169N/A try {
169N/A UnicastRemoteObject.unexportObject(impl2, true);
169N/A } catch (Throwable t) {
169N/A }
169N/A }
169N/A }
0N/A }
0N/A}
0N/A
0N/Ainterface Receiver extends Remote {
0N/A void receive(Remote obj) throws RemoteException;
0N/A}