![]() |
![]() |
e-docs > Tuxedo > Messages > TRPC Catalog List > TRPC Messages 1500-1599 |
|
TRPC Messages 1500-1599
1500
ERROR: -s option not supported
Description
The uuidgen
command was run with the -s
option (generate a UUID string as a C structure), which was not supported.
Action
Re-run the uuidgen
program without this option.
See Also
BEA TUXEDO TxRPC Guide
1501
ERROR: -t option not supported
Description
The uuidgen
command was run with the -t
option (translate an old style uuid string), which was not supported.
Action
Re-run the uuidgen
program without this option.
See Also
BEA TUXEDO TxRPC Guide
1502
ERROR: Can't specify both -n and -i options
Description
The uuidgen
command was run with both the -n
and -i
options.
Action
Re-run the uuidgen
program with only one of these options.
See Also
BEA TUXEDO TxRPC Guide
1503
ERROR: Non-numeric option specified for -n
Description
The uuidgen
command was run with an invalid argument for the -n
option, which indicates how many identifiers to generate.
Action
Re-run the uuidgen
program with a valid number for the -n
option.
See Also
BEA TUXEDO TxRPC Guide
1504
ERROR: Can't specify both -n and -i options
Description
The uuidgen
command was run with both the -n
and -i
options.
Action
Re-run the uuidgen
program with only one of these options.
See Also
BEA TUXEDO TxRPC Guide
1512
ERROR: Cannot open filename for writing
Description
The uuidgen
command was unable to open the output file, filename, for writing.
Action
Check that the directory, and file if it exists, have write permission. Re-run the uuidgen
program.
See Also
BEA TUXEDO TxRPC Guide
1513
ERROR: Invalid NADDR naddr - must be num.num.num.num where num is a decimal number < 256
Description
The uuidgen
command was run with an invalid value for the NADDR
environment variable. The correct format is
num.num.num.num[.num.num]
where num is a value between 0 and 255, inclusive. The last two numbers are optional.
Action
Change the NADDR
environment variable and re-run the uuidgen
program.
See Also
BEA TUXEDO TxRPC Guide
1514
ERROR: Invalid WSNADDR wsnaddr - must be 0xnnnnnnnnnnnnnnnn where n is a hex digit
Description
The uuidgen
command was run with an invalid value for the WSNADDR
environment variable. The correct format is
0xnnnnnnnnnnnnnnnn
where n is a hex digit (16 hex characters).
Action
Change the WSNADDR
environment variable and re-run the uuidgen
program.
See Also
BEA TUXEDO TxRPC Guide
1515
WARN: Could not find network address in /etc/hosts
Description
The uuidgen
command was run without the NADDR
or WSNADDR
environment variable set and the entry for the machine (the uname
) could not be found in /etc/hosts
. The default address was used.
Action
Set the NADDR
or WSNADDR
environment variable and re-run the uuidgen
program.
See Also
BEA TUXEDO TxRPC Guide
1516
WARN: Using default address addr
Description
The uuidgen
command was run without the NADDR
or WSNADDR
environment variables set and the entry for the machine (the uname
) could not be found in /etc/hosts
. The default address, addr was used.
Action
Set the NADDR
or WSNADDR
environment variable and re-run the uuidgen
program.
See Also
BEA TUXEDO TxRPC Guide
1519
ERROR: Cannot determine license level
Description
An error occurred while retrieving the current license attributes.
Action
Check the log for prior messages indicating the cause of the problem. Normally, it means that the product has not been licensed properly.
1520
ERROR: Not licensed for TXRPC
Description
You do not have a license to use TXRPC.
Action
Purchase a license for TXRPC.
1521
ERROR: Memory allocation failure
Description
An attempt to dynamically allocate memory from the operating system using malloc
failed while parsing an IDL file.
Action
Ensure that the 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.
1522
ERROR: Value valval2 overflows long
Description
While parsing an IDL or ACF file, a numeric value was too large to fit into a long integer.
Action
Correct the value and re-run the operation.
1525
ERROR: End of input reached without terminating character literal
Description
While parsing an IDL or ACF file, a character literal was started but not completed.
Action
Correct the value and re-run the operation.
1526
ERROR: Multiple-character character literal not allowed
Description
While parsing an IDL or ACF file, a character literal was found with more than one character. This is not valid (use a string literal for multi-character values).
Action
Correct the value and re-run the operation.
1527
ERROR: End of input reached without terminating comment
Description
While parsing an IDL or ACF file, a comment was started but not terminated. Often this can cause other variables or functions to be missed.
Action
Correct the input and re-run the operation.
1528
WARN: value val does not fit in character
Description
While parsing an IDL or ACF file, a hex escape sequence was found with a value larger than will fit in a single character (i.e., greater than 0xff).
Action
Correct the value and re-run tidl
(1).
1529
WARN: Dubious escape \valval2
Description
While parsing an IDL or ACF file, a backslash escape preceding a character that is not a valid escape sequence (t, n, f, b, r, 0, backslash, n, x, or X).
Action
Correct the value and re-run tmloadcf
(1)
1530
WARN: value val does not fit in character
Description
While parsing an IDL or ACF file, an octal escape sequence was found with a value larger than will fit in a single character (i.e., greater than 0xff).
Action
Correct the value and re-run tidl
(1).
1531
WARN: Dubious escape \val
Description
While parsing an IDL or ACF file, a backslash escape preceding a character that is not a valid escape sequence (t, n, f, b, r, 0, backslash, n, x, or X).
Action
Correct the value and re-run tidl
(1).
1532
ERROR: End of input reached without terminating double quote
Description
The lexical analyzer encountered an end-of-file while within a character string literal. For example,
const char *str = "error noend /* end of file error *
Action
Change the IDL input file and re-run the tidl
program.
See Also
BEA TUXEDO TxRPC Guide
1533
ERROR: Newline in string literal
Description
The lexical analyzer encountered a string literal that begins on one line and ends on another line. For example,
const char *str = "first
second";
Action
Change the IDL input file and re-run the tidl
program.
See Also
BEA TUXEDO TxRPC Guide
1534
ERROR: UUID syntax error
Description
In an IDL file, the [uuid] attribute had an invalid syntax such as extra left parenthesis within the value. For example,
[uuid((0679E900-A387-110F-9215-930269220000)] /* error */
Action
Change the IDL input file and re-run the tidl
program.
See Also
BEA TUXEDO TxRPC Guide
1535
ERROR: Memory allocation failure
Description
An attempt to dynamically allocate memory from the operating system using malloc
failed while parsing an IDL or ACF file.
Action
Ensure that the 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.
1536
ERROR: VERSION syntax error
Description
In an IDL file, the [version] attribute had an invalid syntax such as extra left parenthesis within the value. For example,
[local, version((0.0)] /* error */
Action
Change the IDL input file and re-run the tidl
program.
See Also
BEA TUXEDO TxRPC Guide
1537
ERROR: Memory allocation failure
Description
An attempt to dynamically allocate memory from the operating system using malloc
failed while parsing an IDL or ACF file.
Action
Ensure that the 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.
1538
ERROR: Memory allocation failure
Description
An attempt to dynamically allocate memory from the operating system using malloc
failed while parsing an IDL or ACF file.
Action
Ensure that the 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
1539
WARN: Identifier ident is too long - truncating to val characters
Description
The lexical analyzer encountered an identifier that was more than 31 characters in length. The identifier is truncated to 31 characters and processing continues. This may cause further processing errors. For example,
const long t2345678901234567890123456789012 = 60;
Action
Change the IDL input file and re-run the tidl
program.
See Also
BEA TUXEDO TxRPC Guide
1543
ERROR: Reached count errors; exiting
Description
The tidl
command encountered more than count errors (default 50) and was quitting. To get all errors printed, use the -error all option.
Action
Change the IDL input file and re-run the tidl
program.
See Also
BEA TUXEDO TxRPC Guide
1545
ERROR: Reached count errors; exiting
Description
The tidl
command encountered more than count errors (default 50) and was quitting. To get all errors printed, use the -error all option.
Action
Change the IDL input file and re-run the tidl
program.
See Also
BEA TUXEDO TxRPC Guide
1546
WARN: header base name val too long, truncating
Description
The generated file name for the header is based on the IDL file name suffixed with .mbr. The base name for the IDL file is greater than 10 characters and will be truncated.
Action
No action required.
See Also
BEA TUXEDO TxRPC Guide
1547
ERROR: failed to create directory val
Description
While parsing an IDL file, tidl
(1) was unable to create the named directory using crtsrcpf.
Action
Check that there is sufficient file space on the device.
See Also
BEA TUXEDO TxRPC Guide
1548
ERROR: failed to copy file val to temp file
Description
While parsing an IDL file, tidl
(1) was unable to copy a temporary file.
Action
Check to see that there is sufficient file space.
See Also
BEA TUXEDO TxRPC Guide
1549
WARN: stub file base name val too long, truncating
Description
The generated file name for the stub file is based on the IDL file name. The base name for the IDL file is greater than 10 characters and will be truncated.
Action
No action required.
See Also
BEA TUXEDO TxRPC Guide
1550
WARN: stub file name val too long, truncating
Description
The generated file name for the stub file is based on the IDL file name. The base name for the IDL file is greater than 10 characters and will be truncated.
Action
No action required.
See Also
BEA TUXEDO TxRPC Guide
1551
WARN: stub file name val too long, truncating
Description
The generated file name for the stub file is based on the IDL file name. The base name for the IDL file is greater than 10 characters and will be truncated.
Action
No action required.
See Also
BEA TUXEDO TxRPC Guide
![]() |
![]() |
![]() |
![]() |
||
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |