go to post Luis Angel Pére... · Sep 1, 2023 And in case that you want to be sure that SEDATION and Procedure are consecutives:
go to post Luis Angel Pére... · Sep 1, 2023 Try this: You just need to change the last return for a send to the BPL.
go to post Luis Angel Pére... · Aug 31, 2023 Well, documentation says: Setting OperationLimit to a positive integer will cause a match operation to signal a TimeOut error after the specified number of clusters of steps by the match engine. Maybe the key question here is...what is a cluster of steps?
go to post Luis Angel Pére... · Aug 29, 2023 I'll paste the answer received by @Aya Heshmat Assuming the client is using a file stream and created a message header, we would expect the stream stored in the MGR/\stream folder to get cleaned with a purge. Because you can add custom code, the associated stream may not be getting deleted so they need to look at their code. If file sizes are large, global streams are preferrable over file streams since any failover would remove the reference and the stream which might be causing these items to not purge. Assuming the file path is potentially different on each failover member. if the resource is shared, I would still expect it to get purged.
go to post Luis Angel Pére... · Aug 28, 2023 A common Java error is produced by Java Heap Space, you can find here the most common errors of memory produced by Java: https://sematext.com/blog/java-lang-outofmemoryerror
go to post Luis Angel Pére... · Aug 26, 2023 Good article! Curiously I uploaded a small project to recognize faces using IRIS and Embedded Python. Would be nice to save the 128 points vector generated for each face into the database and save time recalculating it for each comparation with a new face.
go to post Luis Angel Pére... · Aug 26, 2023 Following the answer of Dmitry you can check this documentation about the Apache configuration to pass file types to the web gateway: https://docs.intersystems.com/healthconnectlatest/csp/docbook/DocBook.UI... As you can read in the doc the Apache server has to pass static files if you want to access to the portal manager, maybe that is the problem with your configuration.
go to post Luis Angel Pére... · Aug 23, 2023 Have you tried changing the %Date type of DOB for %String?
go to post Luis Angel Pére... · Aug 9, 2023 Have you tried adding "()": <assign value='source.{ORCgrp(1).RXE:7.1()}' property='target.{ORCgrp(1).RXE:7.1()}' action='set' />
go to post Luis Angel Pére... · Aug 7, 2023 Maybe this article can help you: https://community.intersystems.com/post/using-new-intersystems-iris-hibe...
go to post Luis Angel Pére... · Aug 7, 2023 As far as I know, there is no extension to connect directly to IRIS using JDBC from Quarkus yet but you always have the option to connect using REST or TCP.
go to post Luis Angel Pére... · Aug 6, 2023 You have 2 options to return a value from a Method, one is to send by reference an object and instantiate that object inside the method called: ClassMethod MyMethod(myInput As String, Output myOutput As MyPackage.MyClass) As %Library.Status { set myOuput = ##class(MyPackage.MyClass).%New() set myOutput.name = "This is a name" return $$$OK } And invoke it like: // Invoke method with .. if it belong to the same class or with ##class(classname).method if it doesn't set tSC = ..MyMethod("One Input", .output) // Now output has been created and output.name has the value "This is a name" write output.name You can see here in the documentation how to pass variables by reference: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...