Signon People Code
Signon People Code
This Signon PeopleCode extracts all the HTTP Header Variable data.
PeopleTools 8.1x only supports a subset of these functions
Application Designer will validate this code. Please note the output file direct
ives.
Put these declarations at the top (i apologize for the ego-centric naming conven
tion!)
Global array of string &gregs_array;
Global array of string &gregs2_array;
Global array of string &gregsP_array;
Global array of string &gregsC_array;
*/
/* *****************************************************************************
**** */
/*
This code should be inserted after the "If / End-if" statement block whi
ch
contains the "SetAuthenticateResult" function call.
*/
&gregs_array = %Request.GetHeaderNames();
&I = &gregs_array.Len;
/*********************************************************/
/* use the following GetFile formats for the output file on UNIX or MS NT *
/
/* for UNIX
&MYFILE = GetFile("/tmp/debug-file.txt", "A", %FilePath_Absolute); */
/* for MS NT or Win2000
&MYFILE = GetFile("c:\temp\debug-file.txt", "A", %FilePath_Absolute); */
/*********************************************************/