BEA Systems, Inc.

WebLogic Server 5.1.0 API Reference

Uses of Class
weblogic.common.T3Exception

Packages that use T3Exception
weblogic.beans.common   
weblogic.common   
weblogic.event.common   
weblogic.io.common   
weblogic.rmi   
weblogic.rmi.server   
weblogic.time.common   
weblogic.workspace.common   
 

Uses of T3Exception in weblogic.beans.common
 

Methods in weblogic.beans.common that throw T3Exception
 void T3Bean.bind(java.lang.String name, boolean implementation)
          Binds a T3Bean to the local server.
 void T3Bean.bind(T3Client t3, java.lang.String name, boolean implementation)
          Binds a T3Bean to an already-connected T3Client with the specified name and implementation.
 java.util.Enumeration T3BeanServicesDef.findClients(java.lang.String name)
          Deprecated. Use RMI instead.
 weblogic.t3.srvr.Address T3BeanServicesDef.findImplementation(java.lang.String name)
          Deprecated. Use RMI instead.
 void T3BeanServicesDef.migrateImplementation(java.lang.String name, weblogic.t3.srvr.Address destination)
          Deprecated. Use RMI instead.
 

Uses of T3Exception in weblogic.common
 

Subclasses of T3Exception in weblogic.common
 interface MonitorException
          A MonitorException is thrown when a task involving a Monitor object (a Monitored operation) wishes to abort the operation.
 interface T3ClientReconnectedException
          A T3ClientReconnectedException is thrown when a T3ClientTenacious attempts to send but fails and then reconnects.
 

Methods in weblogic.common that throw T3Exception
 java.lang.String ConfigServicesDef.getProperty(java.lang.String key)
          Gets a configuration parameter from the weblogic.properties file.
 T3Connection T3Connection.connect()
          Deprecated. Use the JNDI model
 void T3Connection.disconnect()
          Deprecated. Use the JNDI model
 void LogServicesDef.log(java.lang.String msg)
          Deprecated. Use a more specific method such as info, error, or warning
 void LogServicesDef.log(java.lang.String msg, java.lang.Throwable th)
          Deprecated. Use a more specific method such as info, error, or warning
 void LogServicesDef.info(java.lang.String msg)
          Deprecated. Use weblogic.logging.LogOutputStream instead.
 void LogServicesDef.info(java.lang.String msg, java.lang.Throwable th)
          Deprecated. Use weblogic.logging.LogOutputStream instead.
 void LogServicesDef.error(java.lang.String msg, java.lang.Throwable th)
          Deprecated. Use weblogic.logging.LogOutputStream instead.
 void LogServicesDef.error(java.lang.Throwable th)
          Deprecated. Throwables should be accompanied by a text explanation. Use error(String, Throwable) instead.
 void LogServicesDef.error(java.lang.String s)
          Deprecated. Use weblogic.logging.LogOutputStream instead.
 void LogServicesDef.error(java.lang.String msg, java.lang.String stackTrace)
          Deprecated. Throwables be left in their raw form rather than stringified so that loggers can manipulate them. Use error(String, Throwable) instead.
 void LogServicesDef.warning(java.lang.String s)
          Deprecated. Use weblogic.logging.LogOutputStream instead.
 void LogServicesDef.security(java.lang.String s)
          Deprecated. Only the security service should log security messages.
 void LogServicesDef.debug(java.lang.String s)
          Deprecated. Use weblogic.logging.LogOutputStream instead.
 void WorkspaceServicesDef.store(java.lang.String key, java.lang.Object p)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.store()
 void WorkspaceServicesDef.store(java.lang.String key, java.lang.Object p, int scope)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.store()
 void WorkspaceServicesDef.store(java.lang.String key, java.lang.Object p, java.lang.String wsID)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.store()
 java.lang.Object WorkspaceServicesDef.fetch(java.lang.String key)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.fetch()
 java.lang.Object WorkspaceServicesDef.fetch(java.lang.String key, int scope)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.fetch()
 java.lang.Object WorkspaceServicesDef.fetch(java.lang.String key, java.lang.String wsID)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.fetch()
 java.lang.Object WorkspaceServicesDef.remove(java.lang.String key)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.fetch()
 java.lang.Object WorkspaceServicesDef.remove(java.lang.String key, int scope)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.remove()
 java.lang.Object WorkspaceServicesDef.remove(java.lang.String key, java.lang.String wsID)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.remove()
 java.util.Enumeration WorkspaceServicesDef.keys()
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.remove()
 java.util.Enumeration WorkspaceServicesDef.keys(int scope)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.keys()
 java.util.Enumeration WorkspaceServicesDef.keys(java.lang.String workspace)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.keys()
 java.lang.String WorkspaceServicesDef.create(java.lang.String name, java.lang.String parent)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.getWorkspace()
 java.lang.String WorkspaceServicesDef.create(java.lang.String name, int scope)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.getWorkspace()
 java.lang.String WorkspaceServicesDef.create(java.lang.String name)
          Deprecated. Use getWorkspace()
 WorkspaceDef WorkspaceServicesDef.getWorkspace()
          Returns the default named client Workspace object.
 void WorkspaceServicesDef.destroy(java.lang.String wsID)
          Deprecated. Use weblogic.workspace.common.WorkspaceDef.destroy()
 T3Client T3Client.connect()
          Connects the T3Client to a WebLogic Server.
 T3Client T3Client.disconnect()
          Disconnects a T3Client from the WebLogic Server.
 T3Client T3Client.setHardDisconnectTimeoutMins(int minutes)
          Sets the value for a T3Client's hard disconnect timeout in minutes.
 T3Client T3Client.setSoftDisconnectTimeoutMins(int minutes)
          Sets the value for a T3Client's soft disconnect timeout in minutes.
 T3Client T3Client.setIdleDisconnectTimeoutMins(int minutes)
          Sets the value for a T3Client's idle disconnect timeout in minutes.
 java.lang.Object T3Client.sendRecv(java.lang.String clss, java.lang.Object o)
           
 

Constructors in weblogic.common that throw T3Exception
T3Client.T3Client(java.lang.String url, java.lang.String workspace, UserInfo t3u)
          Constructs a T3Client.
T3Client.T3Client(java.lang.String url, java.lang.String workspace)
          Constructs a T3Client.
T3Client.T3Client(java.lang.String url)
          Constructs a T3Client.
T3Client.T3Client(java.lang.String url, UserInfo t3u)
          Constructs a T3Client.
 

Uses of T3Exception in weblogic.event.common
 

Methods in weblogic.event.common that throw T3Exception
 EventTopicDef EventServicesDef.getEventTopic(java.lang.String topic, int lifetime)
          Gets a representation of an Event Topic in the Topic tree, according to the specified lifetime.
 EventTopicDef EventServicesDef.getEventTopic(java.lang.String topic)
          Gets a representation of an Event Topic in the Topic tree.
 EventTopicDef EventTopicDef.getEventTopic(java.lang.String subTopic)
          Creates a subtopic in the topic tree.
 EventTopicDef EventTopicDef.getEventTopic(java.lang.String subTopic, int lifetime)
          Creates a subtopic with the specified lifetime.
 

Uses of T3Exception in weblogic.io.common
 

Methods in weblogic.io.common that throw T3Exception
 T3FileInputStream T3FileSystem.getFileInputStream(java.lang.String path)
          Convenience method that calls getFile(path) and then invokes the getFileInputStream() method of the resulting T3File.
 T3FileInputStream T3FileSystem.getFileInputStream(java.lang.String path, int bufferSize, int readAhead)
          Convenience method that calls getFile(path) and then invokes the getFileInputStream(bufferSize, readAhead) method of the resulting T3File.
 T3FileOutputStream T3FileSystem.getFileOutputStream(java.lang.String path)
          Convenience method that calls getFile(path) and then invokes the getFileOutputStream() method of the resulting T3File.
 T3FileOutputStream T3FileSystem.getFileOutputStream(java.lang.String path, int bufferSize, int writeBehind)
          Convenience method that calls getFile(path) and then invokes the getFileOutputStream(bufferSize, writeBehind) method of the resulting T3File.
 T3FileSystem IOServicesDef.getFileSystem(java.lang.String fileSystemName)
          This method provides the primary file service of the IOServices object - it produces T3FileSystem objects given their names.
 java.util.Enumeration IOServicesDef.listFileSystems()
          This method produces the names of all the file systems on the server.
 T3File IOServicesDef.getFile(java.lang.String path)
          This method takes a file system name and a file name combined in a single String, gets the file system, gets the file from the file system, and returns the file.
 T3FileInputStream IOServicesDef.getFileInputStream(T3File file)
          Convenience method that invokes the getFileInputStream() method of a T3File.
 T3FileInputStream IOServicesDef.getFileInputStream(T3File file, int bufferSize, int readAhead)
          Convenience method that invokes the getFileInputStream(bufferSize, readAhead) method of a T3File.
 T3FileOutputStream IOServicesDef.getFileOutputStream(T3File file)
          Convenience method that invokes the getFileOutputStream() method of a T3File.
 T3FileOutputStream IOServicesDef.getFileOutputStream(T3File file, int bufferSize, int writeBehind)
          Convenience method that invokes the getFileOutputStream(bufferSize, writeBehind) method of a T3File.
 T3FileInputStream IOServicesDef.getFileInputStream(java.lang.String path)
          Convenience method that calls getFile(path) and then invokes the getFileInputStream() method of the resulting T3File.
 T3FileInputStream IOServicesDef.getFileInputStream(java.lang.String path, int bufferSize, int readAhead)
          Convenience method that calls getFile(path) and then invokes the getFileInputStream(bufferSize, readAhead) method of the resulting T3File.
 T3FileOutputStream IOServicesDef.getFileOutputStream(java.lang.String path)
          Convenience method that calls getFile(path) and then invokes the getFileOutputStream() method of the resulting T3File.
 T3FileOutputStream IOServicesDef.getFileOutputStream(java.lang.String path, int bufferSize, int writeBehind)
          Convenience method that calls getFile(path) and then invokes the getFileOutputStream(bufferSize, writeBehind) method of the resulting T3File.
 T3FileInputStream T3File.getFileInputStream()
          Gets a new T3FileInputStream object for reading from the file.
 T3FileInputStream T3File.getFileInputStream(int bufferSize, int readAhead)
          Gets a new T3FileInputStream object for reading from the file.
 T3FileOutputStream T3File.getFileOutputStream()
          Gets a new T3FileOutputStream object for writing to the file.
 T3FileOutputStream T3File.getFileOutputStream(int bufferSize, int writeBehind)
          Gets a new T3FileOutputStream object for writing to the file.
 

Uses of T3Exception in weblogic.rmi
 

Subclasses of T3Exception in weblogic.rmi
 interface AccessException
          This exception is provided for compatibility with java.rmi.*
 interface ConnectException
          This exception is provided for compatibility with java.rmi.*
 interface ConnectIOException
          This exception is provided for compatibility with java.rmi.*
 interface MarshalException
          This exception is provided for compatibility with java.rmi.*
 interface NoSuchObjectException
          This exception is provided for compatibility with java.rmi.*
 interface RemoteException
          Class for RemoteExceptions, the general Exception thrown by any remotely invoked method.
 interface ServerError
          This exception is provided for compatibility with java.rmi.*
 interface ServerException
          This exception is provided for compatibility with java.rmi.*
 interface ServerRuntimeException
          This exception is provided for compatibility with java.rmi.*
 interface StubNotFoundException
          This exception is provided for compatibility with java.rmi.*
 interface UnexpectedException
          This exception is provided for compatibility with java.rmi.*
 interface UnknownHostException
          This exception is provided for compatibility with java.rmi.*
 interface UnmarshalException
          This exception is provided for compatibility with java.rmi.*
 

Uses of T3Exception in weblogic.rmi.server
 

Subclasses of T3Exception in weblogic.rmi.server
 interface ExportException
          This class is provided strictly for compatibility with java.rmi.*
 interface SkeletonMismatchException
          This class is provided strictly for compatibility with java.rmi.*
 interface SkeletonNotFoundException
          This class is provided strictly for compatibility with java.rmi.*
 interface SocketSecurityException
          This class is provided strictly for compatibility with java.rmi.*
 

Uses of T3Exception in weblogic.time.common
 

Subclasses of T3Exception in weblogic.time.common
 interface TimeTriggerException
          Class for time-related exceptions.
 

Methods in weblogic.time.common that throw T3Exception
 long TimeServicesDef.currentTimeMillis()
          Obtains the current server time, in "local server time" format.
 int TimeServicesDef.getRoundTripDelayMillis()
          Returns the number of milliseconds of roundtrip delay between client and server, based on the algorithm shown in currentTimeMillis().
 int TimeServicesDef.getLocalClockOffsetMillis()
          Returns the number of milliseconds of LocalClockOffset between client and server, based on the algorithm shown in currentTimeMillis().
 

Uses of T3Exception in weblogic.workspace.common
 

Methods in weblogic.workspace.common that throw T3Exception
 void WorkspaceDef.store(java.lang.String key, java.lang.Object p)
          Stores the specified Object with the specified key in the Workspace.
 java.lang.Object WorkspaceDef.fetch(java.lang.String key)
          Fetches an Object by the specified key from the Workspace but does not remove it from the Workspace.
 java.lang.Object WorkspaceDef.remove(java.lang.String key)
          Returns an Object by the specified key from the named Workspace and removes it from the Workspace.
 java.util.Enumeration WorkspaceDef.keys()
          Returns an Enumeration of all the keys of a Workspace.
 java.util.Enumeration WorkspaceDef.subspaces()
          Returns an Enumeration of all the subspace names of this Workspace.
 void WorkspaceDef.destroy()
          Destroys a Workspace.
 WorkspaceDef WorkspaceDef.getWorkspace(java.lang.String name)
          Gets a Workspace object that is a child of this Workspace.
 WorkspaceDef WorkspaceDef.getWorkspace(java.lang.String name, int mode)
          Returns a Workspace object that is a child of this Workspace.
 WorkspaceDef WorkspaceDef.getWorkspace(java.lang.String name, int mode, int scope)
          Returns the workspace object, if it exists, as a child of the scoped workspace.
 void WorkspaceDef.addMonitor(java.lang.String key, Monitor monitor)
          Adds a Monitor to a Workspace value.
 void WorkspaceDef.removeMonitor(java.lang.String key, Monitor monitor)
          Removes a Monitor from a Workspace value.
 void WorkspaceDef.addMonitor(Monitor monitor)
          Adds a Monitor to a Workspace.
 void WorkspaceDef.removeMonitor(Monitor monitor)
          Removes a Monitor from a workspace.
 


Documentation is available at
http://www.weblogic.com/docs51