Java Code Examples for com.sun.corba.se.spi.presentation.rmi.StubAdapter#connect()

The following examples show how to use com.sun.corba.se.spi.presentation.rmi.StubAdapter#connect() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ORBUtility.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 2
Source File: ORBUtility.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 3
Source File: ORBUtility.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 4
Source File: ORBUtility.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 5
Source File: ORBUtility.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 6
Source File: ORBUtility.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 7
Source File: ORBUtility.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 8
Source File: ORBUtility.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 9
Source File: ORBUtility.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 10
Source File: ORBUtility.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/** Obtains an IOR for the object reference obj, first connecting it to
* the ORB if necessary.
* @return IOR the IOR that represents this objref.  This will
* never be null.
* @exception BAD_OPERATION if the object could not be connected,
* if a connection attempt was needed.
* @exception BAD_PARAM if obj is a local object, or else was
* created by a foreign ORB.
*/
public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj )
{
    IOR result ;
    try {
        result = getIOR( obj ) ;
    } catch (BAD_OPERATION bop) {
        if (StubAdapter.isStub(obj)) {
            try {
                StubAdapter.connect( obj, orb ) ;
            } catch (java.rmi.RemoteException exc) {
                throw wrapper.connectingServant( exc ) ;
            }
        } else {
            orb.connect( obj ) ;
        }

        result = getIOR( obj ) ;
    }

    return result ;
}
 
Example 11
Source File: IDLJavaSerializationInputStream.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 12
Source File: IDLJavaSerializationInputStream.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 13
Source File: IDLJavaSerializationInputStream.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 14
Source File: IDLJavaSerializationInputStream.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 15
Source File: IDLJavaSerializationInputStream.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 16
Source File: IDLJavaSerializationInputStream.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 17
Source File: IDLJavaSerializationInputStream.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 18
Source File: IDLJavaSerializationInputStream.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 19
Source File: IDLJavaSerializationInputStream.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}
 
Example 20
Source File: IDLJavaSerializationInputStream.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * Connect the Stub to the ORB.
 */
protected final Object resolveObject(Object obj) throws IOException {
    try {
        if (StubAdapter.isStub(obj)) {
            StubAdapter.connect(obj, orb);
        }
    } catch (java.rmi.RemoteException re) {
        IOException ie = new IOException("resolveObject failed");
        ie.initCause(re);
        throw ie;
    }
    return obj;
}