Messages 27241 Through 27260

Note: If an error code within the above range does not appear in this list, it is considered an Internal Error, for which no specific user troubleshooting guidelines are available.

Message Code 27241

Not enough OS_ALLOCA memory ('allocation request size in bytes') for host name

Insufficient memory for performing an operation.

Troubleshooting

  • Check the machine's memory resources, and close any unnecessary processes running on the machine.
  • Restart the computer and replay the script again.
  • If the problem persists, reduce the number of virtual users that you are running on the same machine.

Message Code 27242

Host name is empty

The "hostname" argument specified in web_set_user must be denoted by a non-empty string.

Troubleshooting

  • Check that the third argument in the web_set_user function is specified in the format "host:port" or "host". The host must be a non-empty string. The port must be either:

    • specified as a positive number greater than 0
    • unspecified (in which case the default port will be used)

Message Code 27243

Invalid port

The port specified in web_set_user is invalid. The port (if specified), should be a positive value greater than 0.

Troubleshooting

  • Check that the third argument in the web_set_user function is specified in the format "host:port" or "host". If the port is not specified (i.e., there is no "port" in the argument), the default port is used.
  • If the port is specified, verify that the port is a positive number greater than 0.

Message Code 27244

web_concurrent_start detected within a concurrent group. A previous web_concurrent_end may be missing

The error occurs when no web_concurrent_end call is found before the consequent web_concurrent_start call. A concurrent group cannot exist within another concurrent group.

Troubleshooting

  • Split the nested concurrent group by adding the web_concurrent_end call before the consequent web_concurrent_start call, or
  • Delete the nested web_concurrent_start call from the script.

Message Code 27245

web_concurrent_end without a prior web_concurrent_start

There is no corresponding web_concurrent_start for the web_concurrent_end call.

Troubleshooting

Try one of the following:

  • Add the web_concurrent_start function before the call to the web_concurrent_end
  • Delete the offending call to web_concurrent_end from the script

Message Code 27246

Function not allowed within a concurrent group

The offending function cannot be run within a concurrent group.

Troubleshooting

  • Move the function outside the concurrent group.

Message Code 27247

Invalid proxy port

The proxy port specified in web_set_proxy is invalid. The proxy port (if specified), should be a positive value greater than 0.

Troubleshooting

  • Check that the first argument in the web_set_proxy function is specified in the format proxy_host:port or proxy_host. If no port is defined in the first argument, the default proxy port is used.
  • If the port is specified, verify that the port is a positive number greater than 0.

Message Code 27248

Parameter_SaveString failed (rc='return value') for 'parameter'

Unable to save the specified parameter.

Troubleshooting

  • Check that the parameter length is within a valid range. For more information on parameter ranges, refer to the Function Reference.

Message Code 27251

Parameter_SaveString failed (rc='return code') when emptying 'parameter'

Unable to save the specified parameter.

Troubleshooting

  • Check that the parameter length is within a valid range. For more information on parameter ranges, refer to the Function Reference.

Message Code 27252

Invalid ordinal

The "Ordinal" (or "Ord") argument cannot have a value of less than, or equal to 0.

Troubleshooting

  • Enter an "Ordinal" argument value that is greater than 0.

Message Code 27253

Invalid left and/or right boundary

The left and/or right boundary arguments are NULL.

Troubleshooting

  • Provide a non-NULL string for the left and/or right boundary arguments.

Message Code 27254

Parameter name is NULL or empty

The parameter name must be denoted by a non-empty string.

Troubleshooting

  • Provide a non-empty string for the parameter name argument.

Message Code 27255

Header value is NULL

The header name value must be denoted by a non-empty string.

Troubleshooting

  • Provide a non-empty string for the header name value.

Message Code 27256

Header name is NULL or empty

The header name must be denoted by a non-empty string.

Troubleshooting

  • Provide a non-empty string for the header name argument.

Message Code 27257

Pending web_reg_save_param/reg_find/create_html_param[_ex] request(s) detected and reset at the end of iteration number 'iteration number'

The specified iteration number ended, but there are still active web_reg_save_param/ reg_find / create_html_param[_ex] requests that were not performed during the iteration.

Troubleshooting

  • Check which requests were not performed. If an unperformed request is not critical, delete it from the script.
  • If an unperformed request is critical, contact customer support.

Message Code 27258

Pending web_reg_save_param/reg_find/create_html_param[_ex] request(s) detected and reset at the end of the virtual user

The Virtual User run ended, but there are still active web_reg_save_param / reg_find / create_html_param[_ex] requests that were not performed during replay.

Troubleshooting

  • Check which requests were not performed. If an unperformed request is not critical, delete it from the script.
  • If an unperformed request is critical, contact customer support.

Message Code 27259

Pending web_reg_save_param/reg_find/create_html_param[_ex] request(s) detected and reset at the end of the Init section

The Init section ended, but there are still active web_reg_save_param / reg_find / create_html_param[_ex] requests that were not performed during the Init Section.

Troubleshooting

  • Check which requests were not performed. If an unperformed request is not critical, include "Resource=1" in one of its parameters, or delete the unperformed request from the script.
  • If an unperformed request is critical, contact customer support.

Message Code 27260

Pending concurrent group detected and reset at the end of iteration number 'iteration number'

The specified iteration number ended, but a section of the script that includes the web_start_concurrent_group call is missing the web_end_concurrent_group call. The pending concurrent group is reset.

Troubleshooting

  • Add the web_end_concurrent_group call to the relevant section in the script.