go to post Enrico Parisi · Mar 7, 2024 Change to Do ..SendRequestSync("process.Reconciliation",pInput, .pOutput)
go to post Enrico Parisi · Mar 7, 2024 In your OnProcessInput() methods, how do you call the business process (or operation)? SendRequestAsync() or SendRequestSync()?
go to post Enrico Parisi · Mar 6, 2024 Sure, that's fine, each process commit/rollback it's own transactions. My message was to @Timo Lindenschmid where he was trying to commit/rollback worker processes from the "main" process. That's not possible.
go to post Enrico Parisi · Mar 6, 2024 How can a process commit/rollback transactions of other process(es)??
go to post Enrico Parisi · Mar 5, 2024 Are you using "direct" file I/O using Open/Use etc. commands?I think that's the way to go for your requirements. If so, have a look to the $ZSEEK() function, the documentation is here.
go to post Enrico Parisi · Mar 5, 2024 I think that using EnsLib.REST.GenericService and EnsLib.REST.GenericOperation is the way to go.
go to post Enrico Parisi · Mar 4, 2024 What platform and upgrade target version? I think the platform is relevant because install/upgrade script is different in Linux and Windows.
go to post Enrico Parisi · Mar 4, 2024 I'm sorry, I don't have a system that old to check/test. The oldest I have is 2018 and there AESEncode() and AESDecode() are deprecated (use AESCBCEncrypt() and AESCBCDecrypt() instead). Are AESCBCEncrypt() and AESCBCDecrypt() implemented in version 2016?And AESCBCEncryptStream(), AESCBCDecryptStream()?
go to post Enrico Parisi · Mar 3, 2024 Please note that, by default, Base64Encode() Insert CR/LF after every 76 characters.Did you take that into account? See class reference.
go to post Enrico Parisi · Mar 3, 2024 When you run $zf(-100) from IRIS session terminal the external process is run in the OS context (secutity/permissions) of the OS user loggen in. When $zf(-100) is run by a storedproc or studio is run in the OS context (secutity/permissions) of the OS user used by the IRIS instance. You have permission and/or environment issue. Why run python using $zf(-100)? You can use embedded python to avoid this issues, it is simpler and have better performance.
go to post Enrico Parisi · Mar 3, 2024 What's the value of the parameter ELEMENTQUALIFIED in your classes? As Luis said, "The type for ELEMENTQUALIFIED is Boolean (0 or 1)". If you cannot post your actual class, can you reproduce the error writing a simple sample class and port it here?
go to post Enrico Parisi · Mar 1, 2024 How do you get to the download page? Thy using the "Download InterSystems IRIS" link in the left side of the community homepage. Using that link I can choose to download 2022.3
go to post Enrico Parisi · Mar 1, 2024 Ciao Ilenia, what kind of single FHIR resource is so large so that you need to split it? If there are multiple resources, then you can post them individually.
go to post Enrico Parisi · Feb 29, 2024 Despite the lack of details in the question, using a lot of imagination and fantasy, my guess is that you are using ^%SYS.MONLBL or ^PERFMON or %Monitor.System package classes. If my guess is correct, then I'd suggest to check the chapter "Estimate Memory Requirements" in the "Examining Routine Performance Using ^%SYS.MONLBL" documentation page.
go to post Enrico Parisi · Feb 28, 2024 Are you running it from an elevated (administrator or equivalent) command prompt?
go to post Enrico Parisi · Feb 28, 2024 New variant that I like it better 😀 %SYS>Set ResultSet=##class(Config.Namespaces).ListFunc() %SYS>While ResultSet.%Next() { Write ResultSet.%Get("Namespace"),$c(9),ResultSet.%Get("Globals"),$c(9),ResultSet.%Get("Routines"),!} %ALL %DEFAULTDB %DEFAULTDB %SYS IRISSYS IRISSYS USER USER USER %SYS>