Response Timeout: 10 (Timeout for getting a response from the server (the timeout for opening the connection to the server is always 5 seconds). Setting the timeout to -1 means wait forever.)
Reply Code Actions: E=R (R - Retry the message according to the configured RetryInterval and FailureTimeout; finally Fail unless a different action is also specified.)
Retry Interval: 1 (How frequently to retry access to the output system)
Failure Timeout: 60 (Total number of seconds to keep trying to deliver the message. After this number of seconds has elapsed, the business operation discards the message data and returns an error code. To ensure that no message is ever skipped, enter a Failure Timeout value of -1, which means 'Never time out'. Use a setting of -1 when complete data delivery is critical, for example in health care applications. )
go to post
No, services are not defined in iris.cpf.
You need to call irissesson from bash/ps/cmd.
go to post
Try something like this:
go to post
Which HL7 engine has such requirements?
go to post
2022.1.png)
go to post
Body tab is unrelated to XML export, Contents tab is essentially XML export.
go to post
%FromJSON also accepts filenames:
set obj = {}.%FromJSON("data.json")
go to post
Well, you already have a null check.
To check if the object is locked just try to acquire exclusive lock with no wait, so it's enough to call
%AcquireLock
.go to post
All object properties in a request or response object must extend %XML.Adaptor.
Lists and arrays of streams are skipped.
Private properties are skipped.
MultiDimensional properties are skipped.
XMLIO = "IN" properties are skipped.
XMLPROJECTION = "NONE" properties are skipped.
go to post
Is this an expected growth? Check on global growth, maybe there's something you can delete.
You can mount blob storage from the cloud, but performance might (and probably would) take a hit.
go to post
$property works with all objects, dynamic or not:
>s a={"b":2} >w $property(a, "b") 2
go to post
I usually export the entire package, but if you want subclasses run this query:
SELECT Name FROM %Dictionary.ClassDefinitionQuery_SubclassOf('%Persistent')
And then call $system.OBJ.ExportODL on every result.
go to post
Check Security.Services class.
set p("Enabled")=1 set sc = ##class(Security.Services).Modify("%Service_Telnet", .p)
go to post
Check this example. It iterates all JSON elements, and also outputs the corresponding paths to access them.
go to post
For DTLs, if a property name starts from %% - it would be skipped.
go to post
Do you mean DTL?
go to post
Use $zdth to convert unixtime into horolog and then $zdate to convert it to date string:
write $zd($zdth(572486400, -2),3) 1988-02-22
go to post
Awesome! Please add latest too.
go to post
Before you quit the onrequest method do this:
Set sc = pResponse.%Save() Set ^dbg($i(^dbg)) = $lb($h, sc, pResponse.%Id())
Then check ^dbg global, sc must be 1 and there should be an id. Try to open pResponse object from a terminal.
go to post
You need to do either:
You're sending request in async mode and don't wait for a response that's why response is not recorded - there's nothing waiting for it.
go to post
Set image.Prompt = "Two cats with a hat reading a comic"
Come on, why wouldn't you post the results?