Consultor Eletrônico



Kbase P24188: XML message hangs unless alert box is used
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   11/25/2003
Status: Unverified

GOAL:

XML message hangs unless alert box is used

SYMPTOM(s):

If this message is removed, the XML return request never happens.
-------------------------------------------------------------*/
MESSAGE "Done posting" VIEW-AS ALERT-BOX.
DO WHILE vhWebSocket:CONNECTED():
PROCESS EVENTS.
IF ETIME >= 10000 THEN LEAVE.
PAUSE 1 NO-MESSAGE.
END.

CHANGE:

PAUSE 1 NO-MESSAGE.

FIX:

Code should be as follows:

/*-------------------------------------------------------------
If this message is removed, the XML return request never happens.
-------------------------------------------------------------*/
DO WHILE vhWebSocket:CONNECTED():
PROCESS EVENTS.
IF ETIME >= 10000 THEN LEAVE.
END.