User bio
404 bio not found
Member since May 20, 2023
Posts:
Replies:
Hi Scott,
The Service configuration does not require credentials, but the DNS name is required. You must create a SQL Gateway connection with an ODBC connection name (localhost, superserver port), along with Healthashare credentials.
Thanks,
Yes Scott
Certifications & Credly badges:
Prasanth has no Certifications & Credly badges yet.
Global Masters badges:







Followers:
Following:
Hi,
Here is the sample code
Set formatter=##class(%JSON.Formatter).%New()
Set sc=formatter.FormatToString(DCJson,.tJsonStr)
Set newMsg = ##class(Ens.StreamContainer).%New()
Set newMsg.Stream = ##class(%Stream.GlobalCharacter).%New()
do newMsg.Stream.Write(tJsonStr)
W newMsg.Stream.Read()
Output:
{
"name":"Janko",
"surname":"Hrasko",
"colors":[
"blue",
"green",
"yellow"
]
}
Thanks,