Hello,
is there some kind ZEN component available (e.g. tree or anything), which can display raw JSON string data nicely on ZEN webpage ?
JSON string contains primary nodes, subnodes, arrays.
Hello,
is there some kind ZEN component available (e.g. tree or anything), which can display raw JSON string data nicely on ZEN webpage ?
JSON string contains primary nodes, subnodes, arrays.
here is my $ZV string "Cache for Windows (x86-64) 2016.2.1 (Build 803) Wed Oct 26 2016 12:43:35 EDT"
two questions
1. How do i convert any Persistent object to JSON String ?
2. How do i convert an y Register object to JSON string ?
3. Do i need to extend from any adaptor class for 1 & 2 ?
I have a soap webservice extended from %SOAP.WebService class
Lets say i have web method and have return type of following classes (either one of them)
Class ReturnTypeA
{
Property SelectedDoses As %XML.DataSet;
}
Class ReturnTypeB
{
Property SelectedDoses As list Of WebServices.DataTypes.Dose;
}
Which return type class has better performance while in terms of xmL serialization ? A or B
my client application is in C#
Lets say i have a record "Person". If i want to access the "Name" property of that object which one of the following best option performance wise
1. Option 1
set record = ##class(Test.Person).%OpenId(1)
write record.Name
2. Option 2
write ##class(Test.Person).NameGetStored(1)
Hello Cache experts,
Has anyone tried using Cache object script to check windows service is running or windows service installed or not on same computer or remote computer ? basically i am trying to develop cache program which will check "windows service" running or installed on current computer or remote computer. Based on the status of this windows service, i want to write some business logic in our application. Any suggestions will be more welcome