Kbase P151755: Client crash on call-back from asynchronous AppServer call running on session handle
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  26/08/2009 |
|
Status: Unverified
SYMPTOM(s):
Client crash on call-back from asynchronous AppServer call running on session handle
Client crash on call-back from asynchronous AppServer call when the output table-handle hasn't been prepared
Stack trace from prowin32.dll reads:
pam_get_item
FACT(s) (Environment):
The problem is not observed when running on server handle
State-reset AppServer
Windows
OpenEdge 10.2A
CAUSE:
Bug# OE00190124
FIX:
Add some code to prepare the temp-table if the handle is not valid.
i.e.:
IF NOT VALID-HANDLE(httActionOut) THEN DO:
CREATE TEMP-TABLE httActionOut.
httActionOut:ADD-NEW-FIELD("cDummy":U,"CHARACTER":U).
httActionOut:TEMP-TABLE-PREPARE("AsynchOutTemp":U).
END.