Consultor Eletrônico



Kbase P24943: Dynamics: Getting error (560) from getPropertyList in Sessi
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   2/4/2005
Status: Unverified

FACT(s) (Environment):

Windows

FACT(s) (Environment):

Dynamics 2.0A

SYMPTOM(s):

Dynamics: Getting error (560) from getPropertyList in Session Manager for undefined properties.

Entry 2 is outside the range of list. (560)

CAUSE:

Cause unknown

CAUSE:

Bug#20030508-026

FIX:

No known fix.

The workaround shown below is to obtain the value of each property individually rather than as a group.

Code to reproduce:

{afglobals.i}
dynamic-function ('setPropertyList':U in gshSessionManager, 'p1', '1', yes).
message dynamic-function ('getPropertyList':U in gshSessionManager, 'p1,p2,p3', yes).

Workaround using the above example:

{afglobals.i}
dynamic-function ('setPropertyList':U in gshSessionManager, 'p1', '1', yes).
message
dynamic-function ('getPropertyList':U in gshSessionManager, 'p1', yes)
dynamic-function ('getPropertyList':U in gshSessionManager, 'p2', yes)
dynamic-function ('getPropertyList':U in gshSessionManager, 'p3', yes).