Error Problem With Getclass() Function

KrisM

Member
Code:
define output parameter ocx as character no-undo.
define variable className as Progress.Lang.Class no-undo.
ocx = "FAIL".
className = Progress.Lang.Class:GetClass("class.does.not.exist") no-error.
if valid-object(className)
then ocx = "OK".
else ocx = "notValid".

When i run this code locally from the editor or on an appserver running on Unix, everything is ok. (The procedure returns 'notValid'.)
However when i run this same code on an appserver running on Windows the appserver process crashes.

Is this a known issue ?
Any suggestions ?
Or should i just report this to Progress support ?



(edit : Progress version is 11.6)
 
Top