Skip navigation.

OTS メッセージ 1000-1099

  Previous

1000

WARN:xa_start() failed in pre-prepare phase with error = internalcode
WARN: 前準備フェーズでエラー internalcode が発生し、xa_start() が異常終了しました。

説明

Attempts to call xa_start with the flags value of TMRESUME or TMNOFLAGS failed in the preprepare phase of the transaction life cycle. The transaction will be rolled back.

アクション

Verify configuration of openinfo for the associated resource manager. Consult error codes described for X/Open in the CAE Specification.

1001

WARN:xa_end() failed in pre-prepare phase with error = internalcode
WARN: 前準備フェーズでエラー internalcode が発生し、xa_end() が異常終了しました。

説明

Attempts to call xa_end with the flags value of TMFAIL failed in the preprepare phase of the transaction life cycle. The transaction will be rolled back.

アクション

Verify configuration of openinfo for the associated resource manager. Consult error codes described for X/Open in the CAE Specification.

1002

ERROR:Unable to attach BB
ERROR: 掲示板にアタッチできません。

説明

This message occurs in the server process if the server process was configured in the PROTECTED SYSTEM_ACCESS mode and the process is unable to attach itself to the Bulletin Board.

アクション

BEA Customer Support にお問い合わせください。

1003

ERROR:Unable to lock BB and detach previous BB
ERROR: 掲示板のロックとデタッチを実行できません。

説明

This message occurs in the server process if the server process was configured in the PROTECTED SYSTEM_ACCESS mode and the process is unable to lock and later detach itself from the Bulletin Board.

アクション

BEA Customer Support にお問い合わせください。

1004

ERROR:Unable to lock BB
ERROR: 掲示板をロックできません。

説明

サーバ・プロセスが掲示板をロックできないと、サーバ・プロセスでこのメッセージが表示されます。

アクション

BEA Customer Support にお問い合わせください。

1005

ERROR:Unable to detach BB
ERROR: 掲示板をデタッチできません。

説明

This message occurs in the server process if server process was configured in the PROTECTED SYSTEM_ACCESS mode and the process is unable to detach itself from the Bulletin Board.

アクション

BEA Customer Support にお問い合わせください。

1006

ERROR:Fatal error receiving requests, shutting server down
ERROR: 要求受信中に重大なエラー。サーバをシャットダウンします。

説明

メモリ不足が原因で、要求の受信中にサーバが重大なエラーを受信しました。

アクション

オペレーティング・システムのパラメータが、マシンのメモリ量およびプロセスが使用できるメモリ量に関して正しく設定されているか確認してください。マシンのメモリ使用を減らすか、マシンの物理メモリ量を増やします。スワップ・デバイスの領域も増やします。

関連項目

malloc 関数を参照してください。

UNIX システムの場合は、cmalloc(3) のマニュアル・ページを参照してください。

Microsoft Windows NT システムの場合は、Microsoft Visual C++ のオンライン・ヘルプを参照してください。

1007

ERROR:Cannot call ATMI routine without joining application
ERROR: アプリケーションに結合されていないので ATMI ルーチンを呼び出せません。

説明

クライアントでは、ATMI ルーチンを呼び出す前に、アプリケーションに結合する必要があります。

アクション

Modify the client to call tpinit (or a function which calls tpinit) before calling the ATMI routines.

関連項目

『BEA TUXEDO プログラミング ガイド』

1008

WARN:tpreturn called outside service routine
WARN: tpreturn が サービス・ルーチン外から呼び出されました。

説明

tpreturn is being called outside the service routine.

アクション

なし。

1009

WARN:tpreturn called with invalid flags 0xval
WARN: 無効なフラグ 0xval を指定して tpreturn が呼び出されました。

説明

tpreturn is being called with the invalid flags '0xval'. This is a programming error.

アクション

Modify the code which is calling tpreturn to pass valid flags values.

関連項目

『BEA TUXEDO プログラミング ガイド』

1010

WARN:tpreturn が TPEXIT で呼び出されました。

説明

tpreturn is being called with flag value TPEXIT, which will cause the server to terminate after sending the reply.

アクション

なし。

関連項目

『BEA TUXEDO プログラミング ガイド』

1011

ERROR:.SysServerTpexit:val, group val, id val server requested TPEXIT
ERROR: .SysServerTpexit: val、グループ val、ID val のサーバが TPEXIT を要求しました。

説明

tpreturn is being called with flag value TPEXIT, which will cause the server to terminate after sending the reply. The server's process id is 'val', it was a member of group 'val', and its id was 'val'.

アクション

なし。

関連項目

『BEA TUXEDO プログラミング ガイド』

1012

WARN:tpreturn called with invalid rval val
WARN: 無効な rval val を指定して tpreturn が呼び出されました。

説明

tpreturn is being called with an rval of 'val', which is invalid. This will cause the server to terminate and restart after sending the reply.

アクション

Correct the code that calls tpreturn with the invalid rval value.

関連項目

『BEA TUXEDO プログラミング ガイド』

1013

ERROR:Invalid data pointer given to tpreturn()
ERROR: tpreturn() に無効なデータ・ポインタが与えられました。

説明

The call to tpreturn was passed an invalid data pointer. This will cause the server to terminate and restart after sending the reply.

アクション

Correct the code that calls tpreturn with the invalid data pointer.

関連項目

『BEA TUXEDO プログラミング ガイド』

1014

ERROR:Type switch buffer uninitialization routine failure
ERROR: 型スイッチ・バッファ初期化解除ルーチンに異常がありました。

説明

バッファを切り替える試行が、初期化の解除中に異常終了しました。サービス・ルーチンが渡されたのと同じバッファを返さなかったため、バッファの切り替えができませんでした。

アクション

コードを修正し、同じバッファを返すようにします。

関連項目

『BEA TUXEDO プログラミング ガイド』

1015

ERROR:Performed tpreturn() with outstanding replies
ERROR: 未処理の応答が存在するのに tpreturn() を実行しました。

説明

The service routine called tpreturn even though it has replies still outstanding. The server will terminate and restart, which will cause the replies to be lost.

アクション

クライアントは、それらの応答をすばやく取得する必要があります。

関連項目

tpgetrply in the BEA TUXEDO Programmer's Guide

1016

WARN:tpreturn failed because connection not SENDONLY
WARN: 接続が SENDONLY モードでないために tpreturn が異常終了しました。

説明

The tpreturn failed because the connection over which the reply was to be sent is TPRECVONLY-only. The service is involved in a conversation, and it does not currently have control over the connection to the client.

アクション

クライアントとサーバは、会話を調整して、接続を制御する必要があります。

関連項目

tpsend and tpreturn in the BEA TUXEDO Programmer's Guide

1017

WARN:tpreturn failed because subordinate conversations open
WARN: tpreturn が サブオーディネート会話がオープン中であるために異常終了しました。

説明

tpreturn failed because the transaction has subordinate conversations still in progress.

アクション

クライアントは、トランザクションとサブオーディネート会話を調整する必要があります。

関連項目

tpsend in the BEA TUXEDO Programmer's Guide

1018

ERROR:tpreturn tpcommit reported val
ERROR: tpreturn 実行時の tpcommit から val が報告されました。

説明

During tpreturn, a call to tpcommit reported the error 'val'.

アクション

This unexpected error occurred while committing the transaction. See the documentation on tpcommit.

関連項目

tpcommit in the BEA TUXEDO Programmer's Guide

1019

WARN:tpreturn transaction processing failure
WARN: tpreturn トランザクション処理が異常終了しました。

説明

サービスをトランザクションから分離している最中にエラーが発生しました。該当するサービスは、応答を送信してから終了し、再起動されます。

アクション

なし。

1020

ERROR:tpreturn could not send reply val
ERROR: tpreturn で応答 val を送信できませんでした。

説明

The service could not send the reply 'val'. This is an unexpected error.

アクション

BEA Customer Support にお問い合わせください。

1021

ERROR:Type switch buffer uninitialization routine failure
ERROR: 型スイッチ・バッファ初期化解除ルーチンに異常がありました。

説明

バッファを切り替える試行が、初期化の解除中に異常終了しました。サービス・ルーチンが渡されたのと同じバッファを返さなかったため、バッファの切り替えができませんでした。

アクション

コードを修正し、同じバッファを返すようにします。

関連項目

『BEA TUXEDO プログラミング ガイド』

 

Skip footer navigation  Back to Top Previous