JOLT FML Error Messages

Oracle Tuxedo のシステム・メッセージには、次の情報が含まれています。

説明: メッセージの意味と内容を説明します。

アクション: 検出された問題を修正するための手順を示します。

関連項目: 関連する情報の参照先を示します (ただし、必要な場合のみ)。

Oracle Tuxedo のシステム・メッセージには番号が付けられ、複数のカタログにまとめられています。カタログの種類は、メッセージの生成元である Oracle Tuxedo 10g Release 3 (10.3) システムのコンポーネントの種類に基づいています。特定のメッセージを調べるには、以下のカタログの中から適切なカタログ名をクリックしてください。

注意: すでに廃止された機能のメッセージが表示される場合があります。廃止された機能はサポートされませんのでご注意ください。

1

(ERROR) Fielded buffer not aligned.

説明

An FML function was called with a fielded buffer that is not properly aligned. Most machines require half-word alignment.

アクション

Use Falloc() to retrieve an allocated, properly aligned buffer.

関連項目

BEA Tuxedo ATMI FML Function Reference

2

(ERROR) Buffer not fielded.

説明

A buffer was passed to an FML function that has not been initialized.

アクション

Use Finit() to initialize a buffer allocated directly by the application, or use Falloc() to allocate and initialize a fielded buffer.

関連項目

BEA Tuxedo ATMI FML Function Reference

3

(ERROR) Invalid argument to function.

説明

An invalid argument (other than an invalid field buffer, field identifier, or field type) was passed to an FML function. This can be a parameter where a non-NULL parameter was expected (for example, it can be an invalid buffer size, etc.).

アクション

See the manual page associated with the error for the correct parameter values.

関連項目

BEA Tuxedo ATMI FML Function Reference

4

(ERROR) Unknown field number or type.

説明

An invalid field number was specified for an FML function, an invalid field number (0 or greater than 8192) was specified, or Fname() could not find the associated field identifier for the specified name.

アクション

Most of the FML functions return this error; see the manual page associated with the function that returned this error. Check your code to make sure the field specified is valid.

関連項目

BEA Tuxedo ATMI FML Function Reference