Hello, I am trying to use %ZEN.proxyObject to send out in JSON format so I do:
    set tProxyRequest = ##class(%ZEN.proxyObject).%New()
    set tProxyRequest.notanumber = "28001"
    set tProxyRequest.aboolean = "true"
    
    set tBody = ##class(%GlobalCharacterStream).%New()
    do ##class(Ens.Util.JSON).ObjectToJSONStream(tProxyRequest,.tBody,"aelotwu")
    w tBody.Read()
and I get: `{<br>        "aboolean":"true",<br>        "notanumber":28001<br>}` But I want this: `{<br>        "aboolean":<strong>true</strong>,<br>        "notanumber":<strong>"28001"</strong><br>}`   Help please !