…ing level data validation.That said I see dynamic objects available in Caché mainly as a means to convert data from/to JSON.With InterSystems IRIS we introduced DocDB - document da
…e POST body content to my Net.HttpRequest (It's not a key value pair, I am posting my own JSON to the remote server because it needs JSON in the body):
set httpReq…
…"imagen") = pRequest.imagen
//set tData("imagen") = linea
set tSC = ..Adapter.SendFormDataArray(.tResponse,"POST",httpRequest,.tFormVarNames,.tData,URL)
$$$LOGINFO…
…ven’t figured out how to do it), so I decided to write a simple client in ObjectScript to send data to the server.
I created a new class called RestTransfer.Client and added to it…
…vice
The previous code (extending from %CSP.WebSocket of course) was doing this:
Method Send(message As %Library.DynamicObject) As %Integer{ do ..Write(message.Msg.%ToJSON())…
…se. <Route Url="/userdetails" Method="POST" Call="SaveUserDetails"/> My REST client sends data using json in the body of the request. I have verified using debugging tools t…
…writing a code in Python and I want to create a database and some properties and then to send json files (data) to this database. (I use client-server-model for loading the data i…
…e) , the response would always be text type ? Thanks When you're using a REST API, you're sending an HTTP or HTTPS response, so all of the typical HTTP headers apply. This includes…
…cord(object) to a Process one at a time.
I would use an out of the box File Service and send a StreamContainer to a BPL process. The BPL can read one line at a time and call a pr…
JSONJSON (JavaScript Object Notation) is a lightweight, text-based format designed for structured data interchange. It represents data objects consisting of key–value pairs and arr…
…zheng Wang
$ZDATETIME. Unix epoch Millisecondsby Dhivakar Karimuth
$zcvt("abc/def","O","JSON")="abc/def" -> Why?by Yuval Golan
Implementing basic auth on a rest APIby Jaime L…
…d quotes are being escaped with \.
We would need to convert it to JSON, to be able to send it to an external API, because it is sending to us:
{
"informacion": "{\"err…
Hi Guys,
I'm using the below code to Post JSON request to a REST API, but I'm getting "Failed to parse JSON request content." Error,
Set Body = ##class(%ZEN.proxyObject).%New…
…an instance of your new request class, fill it with data from the JSON proxy object, then send it to a message router component with ..SendRequestAsync.Then, in your message router…
…gh. You should not forget that WebSockets is still used the HTTP protocol, so, you should send some headers first.Look at this my code, it uses plain OPEN, and I'm not sure if my e…


