Contains the ASCII CCSID the server used when converting
CGI input data. If the server did not perform any conversion,
(for example, in %%BINARY%% mode), the server sets this value to
the DefaultNetCCSID configuration directive value
819
|
CGI_MODE |
Contains the CGI conversion mode the server is using for this
request. Valid values are %%EBCDIC%%, %%MIXED%%, %%BINARY%%, or
%%EBCDIC_JCD%%
(for more information, see
HTTP Server for AS/400 Webmaster's Guide).
The program can use this information to
determine what conversion, if any, was performed by the server
on CGI input data and what format that data is currently in
|
%%EBCDIC%%
|
CGI_EBCDIC_CCSID |
Contains the EBCDIC CCSID under which the current server
job is running (DefaultFsCCSID configuration directive). It also
represents the current job CCSID that is used during server
conversion (if any) of CGI input data
|
37
|
CONTENT_LENGTH |
When the method of POST is used to send information, this
variable contains the number of characters. Servers typically do
not send an end-of-file flag when they forward the information
by using stdin. If needed, you can use the CONTENT_LENGTH value
to determine the end of the input string. For example: 7034
|
0 |
CONTENT_TYPE |
When information is sent with the method of POST, this
variable contains the type of data included. You can create your
own content type in the server configuration file and map it to
a viewer. For example:
Application/x-www-form-urlencoded
|
Not available |
GATEWAY_INTERFACE |
The version of the CGI specification with which the server complies.
Format: CGI/revision |
CGI/1.1 |
HTTP_ACCEPT |
MIME content types the browser will accept. |
text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
HTTP_COOKIE |
All the cookies available to the current page. |
Not available |
HTTP_HOST |
Contains the HTTP host URL. |
cgidev2.easy400.net |
HTTP_REFERER |
Reference to the page or frame the current page or frame was linked from |
Not available |
HTTP_USER_AGENT |
String identifying the Web client. Includes name and version of the browser, request made through a
proxy, and other information |
CCBot/2.0 (https://commoncrawl.org/faq/) |
IBM_CCSID_VALUE |
the CCSID under which the current server job is running |
37 |
PATH_INFO |
The extra path information following the path information required to
identify the CGI program name |
Not available |
PATH_TRANSLATED |
The server provides a translated version of PATH_INFO, which takes the
path and does any virtual-to-physical mapping to it |
Not available |
QUERY_STRING |
Anything that follows the first ? in the request URL. The string is
encoded in the standard URL format of changing spaces to '+" and
encoding special characters with '%xx' hexadecimal encoding |
ThisIs=ADummyQueryString |
REMOTE_ADDR |
The IP address of the remote host making the request |
18.97.9.171 |
REMOTE_HOST |
The hostname making the request |
Not available |
REMOTE_IDENT |
User ID of the remote user |
Not available |
REQUEST_METHOD |
The method with which the request was made. For HTTP, this is GET or
POST |
GET |
REMOTE_USER |
User name passed for authentication |
Not available |
SCRIPT_NAME |
A virtual path to the program being executed, used for
self-referencing URLs |
/cgidev2p/envvar.pgm |
SERVER_ADDR |
The server's IP address |
185.113.4.55 |
SERVER_NAME |
The server's hostname, DNS alias, or IP address as it would appear in
self-referencing URLs |
cgidev2.easy400.net |
SERVER_PORT |
The port number to which the request was sent |
80 |
SERVER_PROTOCOL |
The name and revision of the information protocol this request came in
with. Format: protocol/revision |
HTTP/1.1 |
SERVER_SOFTWARE |
The name and version of the information server software answering the
request (and running the gateway). Format: name/version.
For example: IBM-Secure-ICS/AS/400 Secure HTTP Server
Apache |
|