$Web Input Header: Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 29: Line 29:
Web request header parameters are always separated by ASCII carriage-return/line-feed (X'0D0A') pairs. As such, an application using <var>$Web_Input_Header</var> would probably want to parse the returned longstring using longstring parsing functions (see [[Longstrings#Longstrings and $functions|"Longstrings and $functions"]]) or [[Stringlist class]] parsing methods (the <var>[[ParseLines (Stringlist subroutine)|ParseLines]]</var> method is likely to be particularly helpful).  
Web request header parameters are always separated by ASCII carriage-return/line-feed (X'0D0A') pairs. As such, an application using <var>$Web_Input_Header</var> would probably want to parse the returned longstring using longstring parsing functions (see [[Longstrings#Longstrings and $functions|"Longstrings and $functions"]]) or [[Stringlist class]] parsing methods (the <var>[[ParseLines (Stringlist subroutine)|ParseLines]]</var> method is likely to be particularly helpful).  


<var>$Web_Input_Header</var> is available only in Versions 7.5 and later of the <var class="product">Model 204</var>.  
<var>$Web_Input_Header</var> is available only in Versions 7.5 and later of <var class="product">Model 204</var>.  


See also <var>[[$Web_Input_Content]]</var>, <var>[[$Web_Output_Content]]</var>, and <var>[[$Web_File_Content]]</var>.
See also <var>[[$Web_Input_Content]]</var>, <var>[[$Web_Output_Content]]</var>, and <var>[[$Web_File_Content]]</var>.


[[Category:Janus Web Server $functions|$Web_Input_Header]]
[[Category:Janus Web Server $functions|$Web_Input_Header]]

Revision as of 16:38, 11 February 2014

Retrieve web request header contents

$Web_Input_Header retrieves the raw web request headers sent by a client. $Web_Input_Header returns this content as a longstring.

Syntax

%lstr = $Web_Input_Header( [type] )

$Web_Input_Header takes a single optional argument and returns a longstring.

type A case-independent string set to one of the following:
Text The data is text and is to be translated from ASCII to EBCDIC.
Binary The data is to be left unchanged.
TextUtf8 The data is UTF-8 and is to be converted to EBCDIC: each two-byte UTF-8 sequence is converted to the corresponding ASCII character, which is then translated to EBCDIC using the translation table in effect for the Janus Web Server connection.

type is an optional argument, and it defaults to Binary.

$Web_Input_Header can be used to examine data from the client if the RAWHEADER parameter is set on the port definition.

Web request header parameters are always separated by ASCII carriage-return/line-feed (X'0D0A') pairs. As such, an application using $Web_Input_Header would probably want to parse the returned longstring using longstring parsing functions (see "Longstrings and $functions") or Stringlist class parsing methods (the ParseLines method is likely to be particularly helpful).

$Web_Input_Header is available only in Versions 7.5 and later of Model 204.

See also $Web_Input_Content, $Web_Output_Content, and $Web_File_Content.