gnu.javax.rmi.CORBA
Class UtilDelegateImpl
- UtilDelegate
The implementation of UtilDelegate.
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
getTie
public Tie getTie(Remote target)
Get the Tie that handles invocations on the given target. If the target/Tie
pair has not been previously registered using
registerTarget(Tie,Remote)
,
this method tries to locate a tie class by the name pattern. If this
succeeds, the tie-target pair is also registered.
- getTie in interface UtilDelegate
loadClass
public Class<T> loadClass(String className,
String remoteCodebase,
ClassLoader loader)
throws ClassNotFoundException
Load the class. The method uses class loaders from the call stact first. If
this fails, the further behaviour depends on the System Property
"java.rmi.server.useCodebaseOnly" with default value "false".
- Try the current thread context class loader first.
- If remoteCodebase is non-null and useCodebaseOnly is "false" then call
java.rmi.server.RMIClassLoader.loadClass (remoteCodebase, className)
- If remoteCodebase is null or useCodebaseOnly is true then call
java.rmi.server.RMIClassLoader.loadClass(className)
- If a class is still not successfully loaded and the loader != null
then try Class.forName(className, false, loader).
- loadClass in interface UtilDelegate
className
- the name of the class.remoteCodebase
- the codebase.loader
- the class loader.
mapSystemException
public RemoteException mapSystemException(SystemException ex)
Converts CORBA
SystemException
into RMI
RemoteException
.
The exception is converted as defined in the following table:
The exception detailed message always consists of
- the string "CORBA "
- the CORBA name of the system exception
- single space
- the hexadecimal value of the system exception's minor code, preceeded
by 0x (higher bits contain
OMGVMCID
). - single space
- the
CompletionStatus
of the exception: "Yes", "No" or "Maybe".
For instance, if the Internet connection was refused:
CORBA COMM_FAILURE 0x535500C9 No
The original CORBA exception is set as the cause of the RemoteException
being created.
- mapSystemException in interface UtilDelegate
registerTarget
public void registerTarget(Tie tie,
Remote target)
Register the Tie-target pair. As the Tie is a Servant, it can potentially
be connected to several objects and hence may be registered with several
targets.
- registerTarget in interface UtilDelegate
wrapException
public RemoteException wrapException(Throwable ex)
throws RuntimeException
Converts the exception that was thrown by the implementation method on a
server side into RemoteException that can be transferred and re-thrown on a
client side. The method converts exceptions as defined in the following
table:
- wrapException in interface UtilDelegate
ex
- an exception that was thrown on a server side implementation.
- the corresponding RemoteException unless it is a RuntimeException.
RuntimeException
- the passed exception if it is an instance of
RuntimeException.
writeAny
public void writeAny(OutputStream output,
Object object)
Write the passed java object to the output stream in the form of the CORBA
Any
. This includes creating an writing the object
TypeCode
first. Such Any can be later read by a non-RMI-IIOP CORBA implementation
and manipulated, for instance, by means, provided in
DynAny
. Depending from the passed value, this
method writes CORBA object, value type or value box. For value types Null
is written with the abstract interface, its typecode having repository id
"IDL:omg.org/CORBA/AbstractBase:1.0" and the empty string name.
- writeAny in interface UtilDelegate
output
- the object to write.object
- the java object that must be written in the form of the CORBA
Any
.
writeRemoteObject
public void writeRemoteObject(OutputStream an_output,
Object object)
Write the passed parameter to the output stream as CORBA object. If the
parameter is an instance of Remote and not an instance of Stub, the method
instantiates a suitable Tie, connects the parameter to this Tie and then
connects that Tie to the ORB that is requested from the output stream. Then
the object reference is written to the stream, making remote invocations
possible. This method is used in write_value(..) method group in
OutputStream
and also may be called
directly from generated Stubs and Ties.
- writeRemoteObject in interface UtilDelegate
- writeRemoteObject in interface RmiUtilities
object
- an object to write.
UtilDelegateImpl.java --
Copyright (C) 2002, 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath 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 for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.