Kbase P85765: Dynamics: REPLACE/CONCAT may not result in data > 32000 bytes' in the Appserver log file
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  3/24/2005 |
|
Status: Unverified
FACT(s) (Environment):
Dynamics
SYMPTOM(s):
REPLACE/CONCAT may not result in data > 32000 bytes' in the Appserver log file
Invalid widget-handle. Not initialized or points to a delete widget (3135)
Cannot access the NAME attribute because the widget does not exist. (3140)
Series of "invalid widget-handle" error messages before a message from validation procedure is displayed on the client with afmessaged.w.
CAUSE:
This is a known issue being investigated by Development
FIX:
The appserver info (connected databases, list of persistent procedures) is collected by af\app\afapppingp.p code. Comment out part of the code causing the problem - as the lines below for the persistent procedure list:
/* Generate a list of running persistent procedures */
hAS = SESSION:FIRST-PROCEDURE.
DO WHILE hAS <> ?:
IF hAS:PERSISTENT THEN
ASSIGN pcConnpps = pcConnpps + (IF pcConnpps NE "" THEN ",":U ELSE "") +
hAS:FILE-NAME.
hAS = hAS:NEXT-SIBLING.
END.