コンテンツはここから始まります

システム・メッセージ: TPFWカタログ0-99

前 次

1


ERROR: Exception in Server::initialize(): exception id. Reason = reason

Description

Either application code raised an exception in Server::initialize() or application code did not catch an exception raised during processing in Server::initialize(). The exception id is printed with a reason. If the application raised TobjS::InitializeFailed and included a reason string, it is printed here. The server startup processing is halted.

Action

Notify the programmer.


2


WARN: Exception in Server::release(): exception id. Reason = reason

Description

Either application code raised an exception in Server::release() or application code did not catch an exception raised during processing in Server::release(). The exception id is printed with a reason. If the application raised TobjS::ReleaseFailed and included a reason string, it is printed here. Server shutdown processing continues.

Action

Notify the programmer.


5


WARN: TP::deactivateEnable() called in illegal context. Called in Server::initialize() or Server::release().

Description

The application called TP::deactivateEnable outside the context of a CORBA method invocation. This is an illegal call. Processing continues.

Action

Notify the programmer. Call to TP::deactivateEnable should be removed from Server::initialize and/or Server::release.


6


警告: TP::deactivateEnable()が不正に呼び出されました - オブジェクトには、トランザクション・アクティブ化ポリシーがあります。

説明

アプリケーションが、トランザクション・アクティブ化ポリシーが指定されたオブジェクトに対するTP::deactivateEnableをCORBAメソッド起動内で呼び出しました。これは不正な呼出しです。処理は続行します。

アクション

プログラマに通知してください。


7


ERROR: Invoking request - interface not advertised: interfaceName.

Description

The object reference invoked by a client is for an interface that is unknown to the system.

Possible reasons are:

  • No server is available that can service the interface.

  • The server may not have been started yet, or may have been shut down or abnormally terminated.

    The factory that created the object reference specified an invalid interface name. The interface name specified in the call to TP::create_object_reference must correspond exactly to the interface name specified in the OMG IDL file for the CORBA object. This interface name is usually the OMG interface repository ID.

Action

Check the status of the interface. It may be suspended. If you cannot find the interface in the system, notify the programmer.


8


WARN: Application didn't catch TobjS exception. TP Framework throwing CORBA::BAD_OPERATION.

Description

The system caught an exception defined in the TobjS idl module after invoking a method of a CORBA object.

This warning indicates that either:

  • The application raised an exception defined in TobjS idl within the method invocation, which is not allowed because the exceptions defined in this module are for use by servers only and should not be returned to clients.

  • The application did not handle an exception defined in TobjS.idl that was thrown by a system call.

    In either case, the system converts the exception to CORBA::BAD_OPERATION before returning the exception to the client.

Action

Notify the programmer.


9


警告: アプリケーションがTP::deactivateEnable()を不正に呼出し、TobjS例外を捕捉しませんでした。

説明

メソッドの起動後にシステムでTobjS::IllegalOperation例外が捕捉されました。

次の理由が考えられます。

  • アプリケーションでTobjS::IllegalOperation例外が生成されましたが、この例外はWLEソフトウェアでの使用のために予約されており、許可されません。

  • アプリケーションが不正に(おそらく、トランザクション・アクティブ化ポリシーが指定されたオブジェクトで)TP::deactivateEnable()を呼び出し、例外を処理しませんでした。

アクション

プログラマに通知してください。


11


エラー: トランザクションに関与しているCORBAオブジェクトに対してトランザクションを伴わない呼出しが実行されました

説明

グローバル・トランザクションに参加するオブジェクトに対して、アクティブ・トランザクションを伴わない起動が実行されました。このエラーは、あるクライアントに対して開始されたトランザクションに参加するCORBAオブジェクトに、別のクライアントがリクエストを送信した場合に発生します。また、トランザクションがロールバック専用としてマークされた直後に呼出しが行われた場合にも発生します。トランザクションがまだアクティブな場合、トランザクション・マネージャによるトランザクション終了処理が完了する際に多少の遅延が発生します。このエラーは通常、同じオブジェクトを異なるトランザクションに対して繰り返し起動するfor loopで検出されます。

アクション

このようなメッセージが何度も表示される場合は、プログラマに通知してください。ループ処理が実行されている場合は、sleep()を使用して、起動と起動の間に短いスリープ時間を設けてください。


21


ERROR: Illegal recursive call on CORBA Object. Interface = interfaceName, OID = object ID

Description

A recursive call was made on a CORBA object. This error occurs if, for example, a client calls object A, which calls object B, which uses an object reference to object A to invoke a method of object A. The second call to object A causes this error message to be printed to the user log and a CORBA::OBJ_ADAPTER exception to be returned to the calling client (in this case, object B).

Action

Notify the programmer.


22


ERROR: Activating object - application raised TobjS::OutOfMemory. Interface = interfaceName, OID = object ID.

Description

The system caught TobjS::OutOfMemory raised by either Server::create_servant or Tobj_ServantBase::activate_object. This error may have occurred because the application did not catch this exception when it was thrown either by a WLE system call or by application code.

Action

This error may indicate that all available memory for the process has been exhausted. Ensure that operating system parameters are set correctly for the amount of memory on the machine and the amount of memory that can be used by a process. Reduce the memory usage on the machine or increase the amount of physical memory on the machine.


23


ERROR: Activating object - application raised TobjS::CreateServantFailed. Reason = reason. Interface = interfaceName, OID = object ID

Description

The application raised TobjS:CreateServantFailed with the reason string supplied.

Action

Application dependent. Notify your company's technical support or the application programmer.


24


ERROR: Activating object - application raised TobjS::ActivateObjectFailed. Reason = servicename. Interface = interfaceName, OID = object ID

Description

The system caught TobjS::ActivateObjectFailed raised by either Server::create_servant or Tobj_ServantBase::activate_object. The application raised TobjS::ActivateObjectFailed with the reason string supplied.

Action

Application dependent. Notify your company's technical support or the application programmer.


25


ERROR: Activating object - CORBA Exception not handled by application. Exception ID = exception ID. Interface = InterfaceName, OID = object ID

Description

The system caught a CORBA exception raised by either Server::create_servant or Tobj_ServantBase::activate_object.

Action

Application dependent. Notify your company's technical support or the application programmer.


26


ERROR: Activating object - Unknown exception not handled by application. Interface = InterfaceName, OID = object ID

Description

The system caught an unknown exception raised by either Server::create_servant or Tobj_ServantBase::activate_object.

Action

Application dependent. Notify your company's technical support or the application programmer.


27


ERROR: De-activating object - application raised TobjS::DeactivateObjectFailed. Reason = reason. Interface = interfaceName, OID = object ID

Description

The system caught a TobjS::DeactivateObjectFailed exception raised in Tobj_ServantBase::deactivate_object.

Action

Application dependent. Notify your company's technical support or the application programmer.


28


ERROR: De-activating object - CORBA Exception not handled by application. Exception ID = exception ID. Interface = InterfaceName, OID = object ID

Description

The system caught a CORBA exception raised in Tobj_ServantBase::deactivate_object.

Action

Application dependent. Notify your company's technical support or the application programmer.


29


ERROR: De-activating object - Unknown exception not handled by application. Interface = InterfaceName, OID = object ID

Description

The system caught an unknown exception raised in Tobj_ServantBase::deactivate_object.

Action

Application dependent. Notify your company's technical support or the application programmer.


30


ERROR: Exception in thread_initialize(): ID. Reason = Reason

Description

This is probably an application or system resource problem.

Action

Check the application code and the operating system configuration to ensure that enough resources are configured. Save the value of Reason and contact Oracle Customer Support for additional help, if necessary.


31


WARN: Exception in thread_release(): ID. Reason = Reason

Description

This is probably an application problem.

Action

Check the application code. Save the value of Reason and contact Oracle Customer Support for additional help, if necessary.


 先頭に戻る 前 次