Hi there,
I'm passing a JSON object to the server as such:
{"key":"value","key":"value","key":"value"}From the client:
- Build object
object=JSON.stringify(object)
-pass to server side method as %String
On the server:
s object={}.FromJSON(object)Instead of getting something like
object=<OBJECT REFERENCE>[2@%Library.DynamicObject]
I get
object="991@%Library.DynamicObject"
I can't access that object using %Get as if says invalid OREF.
I've set the object passed a string to a global and debugged a bit on command line and was successfully able to convert to a dynamic object and use the %Get method to get the





