Messages 26621 Through 26800
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 26624
HTTP Status-Code='HTTP error code'_ld ('server returned status code phrase') for 'URL address'
The request for the specified resource requires user authentication to a proxy.
Troubleshooting
- Refer to the Function Reference to add a web_set_user function to the script.
Message Code 26627
HTTP Status-Code='HTTP error code'_ld ('server returned status code phrase') for 'URL address'
The specified resource has not found in server.
Troubleshooting
- If the file is missing add it to the server.
- If the resource name has a spelling mistake, find the HTML page that contain the resource and correct it.
Message Code 26628
HTTP Status-Code='HTTP error code'_ld ('server returned status code phrase') for 'URL address'
The server understood the request, but is refusing to fulfill it. Usually the server that sends this error requires a client certificate.
Troubleshooting
- Refer to the Function Reference to add a web_set_certificate_ex function to the script.
Message Code 26630
HTTP Status-Code='HTTP error code'_ld ('server returned status code phrase') for 'URL address'
The request for the specified resource requires user authentication.
Troubleshooting
- Refer to the Function Reference to add a web_set_user function to the script.
Message Code 26657
Failed to process cookie "cookie", probably due to invalid or unsupported syntax
The most common reason for this error is invalid syntax, especially of the "expires" date format.
Troubleshooting
- Fix the Cookie syntax.
Message Code 26669
Header name invalid: NULL, empty, consists of white spaces only or contains embedded spaces or colons
Troubleshooting
- Fix the argument in the of web_add_header or web_add_auto_header.
Message Code 26674
Redirection HTTP Status-Code='Server returned status code'_ld ([status reason phrase unavailable]), but a "Location:" header is missing or empty for 'URL address'
Server has returned HTTP Status Code of redirection but has not specified status reason phrase.
Troubleshooting
- Fix the HTTP header on the server.
Message Code 26675
Redirection HTTP Status-Code='Server returned status code'_ld ('Server returned status code phrase'), but a "Location:" header is missing or empty for 'URL address'
Server has returned HTTP Status Code of redirection but has not specified to which location.
Troubleshooting
- Fix the HTTP header on the server.
Message Code 26682
Embedded space(s) or misplaced quotes in value of 'header name' response header for 'URL address'
The syntax of the response header is unrecognized by the Replay.
Troubleshooting
- If the syntax is invalid according to the HTTP specs, fix the server response. Otherwise, contact customer support.
Message Code 26696
Content-Length ignored for non-identity Transfer-Encoding for 'URL'
Warning message.The script probably specifies web_add_header and/or web_add_auto_header with Accept?Encoding
. The server responded by sending a message with a response header Transfer?Encoding:
and response body structured accordingly. The structure of the body returned from the server seems to be invalid.
Troubleshooting
- Comment out or remove any lines in the script with web_add_header and/or web_add_auto_header with "Accept?Encoding".
Message Code 26697
Missing CR/LF after body/trailer ("Transfer-Encoding: chunked") for 'URL'
The script probably specifies web_add_header( "Accept?Encoding", "chunked")
and/or web_add_auto_header( "Accept?Encoding", "chunked")
. The server responded by sending a message with a response header Transfer?Encoding: chunked
and response body structured accordingly. The structure of the body returned from the server seems to be invalid.
Troubleshooting
- Look in the script for
web_add_header( "Accept?Encoding", "chunked")
and/orweb_add_auto_header( "Accept?Encoding", "chunked")
, and comment out or remove these lines.
Message Code 26698
Chunk size missing or invalid ("Transfer-Encoding: chunked") for 'URL'
Troubleshooting
- Look in the script for
web_add_header( "Accept?Encoding", "chunked")
and/orweb_add_auto_header( "Accept?Encoding", "chunked")
, and comment out or remove these lines.
Message Code 26699
Unsupported "Transfer-Encoding" ignored
Warning message. The server has sent a Transfer-Encoding
response header with a value that is not recognized by the Web Replay. The script probably specifies web_add_header and/or web_add_auto_header with Accept?Encoding
. The server responds by sending a message with a response header Transfer?Encoding:
and an unrecognized transfer encoding.
Troubleshooting
- Comment out or remove any preceding web_add_header and/or web_add_auto_header calls in the script specifying
Accept?Encoding
.