Menu

#66 ffwebstate.p bug fix - WebHit.QueryString field

open
nobody
5
2004-08-06
2004-08-06
No

Error condition: WebRequest's query string is not being
saved in WebHit.QueryString field.

Solution:
In FFWGetSession function code:

IF REQUEST_METHOD = "POST"
THEN ASSIGN bufHit.QueryString = QUERY_STRING.
ELSE ASSIGN bufHit.QueryString = WEB-CONTEXT:FORM-
INPUT.

must be replaced with the code:

IF REQUEST_METHOD = "POST"
THEN ASSIGN bufHit.QueryString = WEB-
CONTEXT:FORM-INPUT.
ELSE ASSIGN bufHit.QueryString = QUERY_STRING.

Valdemar Sinkievič
IT administrator - programmer
v.sinkievic@lateko.lt

Discussion


Log in to post a comment.