Among the CGI variables that are displayed when I preview how my app works in IE, I have HTTP_COOKIE. The line looks like this:
HTTP_COOKIE=MYINTRANET_USERID=CF42912; language=En; MYINTRANET_USERINFO=UID=Guest&NAME=Guest&MAIL=myIntranet1.0_Guest@pcs.com&C=??? EMPTYPE=CONTRACTOR&SUPCODE=N&GLOBALID=0
All this information located on one line, so I guess it is the content on the cookie.
Now, how do I get the MYINTRANET_USERID from here?
The other lines under CGI variables of the type HTTP_HOST=myserver.com give me no troubles, as I can simply say
myVar = CGI.HTTP_HOST and I get myserver.com.
Any suggestions?
HTTP_COOKIE=MYINTRANET_USERID=CF42912; language=En; MYINTRANET_USERINFO=UID=Guest&NAME=Guest&MAIL=myIntranet1.0_Guest@pcs.com&C=??? EMPTYPE=CONTRACTOR&SUPCODE=N&GLOBALID=0
All this information located on one line, so I guess it is the content on the cookie.
Now, how do I get the MYINTRANET_USERID from here?
The other lines under CGI variables of the type HTTP_HOST=myserver.com give me no troubles, as I can simply say
myVar = CGI.HTTP_HOST and I get myserver.com.
Any suggestions?