go to post Eduard Lebedyuk · Dec 19, 2023 You can set it programmatically: set package = ##class(%PackageDefinition).%OpenId("User",,.sc) zw package package=2@%Library.PackageDefinition ; <OREF> +----------------- general information --------------- | oref value: 2 | class name: %Library.PackageDefinition | %%OID: $lb("User","%Library.PackageDefinition") | reference count: 2 +----------------- attribute values ------------------ | %Concurrency = 1 <Set> | ClientName = "" | Description = "" | GlobalPrefix = "" | Name = "User" | OwnerName = "" | RtnPrefix = "" | SQLName = "" +----------------- swizzled references --------------- | i%list = "" <Set> | r%list = "" <Set> +-----------------------------------------------------
go to post Eduard Lebedyuk · Dec 18, 2023 Thank you! Just never seen force to be completed under 2 seconds.
go to post Eduard Lebedyuk · Dec 18, 2023 Is it possible to trigger fast shutdown without stopping the OS?
go to post Eduard Lebedyuk · Dec 15, 2023 XSLT unless we are talking about a very large files to be processed very quickly in which case SAX parser might be worth a consideration.
go to post Eduard Lebedyuk · Dec 15, 2023 Can you show an example of source ASTM file and a resulting HL7 you want to get, please?
go to post Eduard Lebedyuk · Dec 12, 2023 Are you getting Ens.StreamContainer? It would be OriginalFilename property in that case.
go to post Eduard Lebedyuk · Dec 11, 2023 I would try a password with just a-z, A-Z, 0-9, !#$%^&*()[]{}. Maybe there's some issue with wide characters?
go to post Eduard Lebedyuk · Dec 11, 2023 You need a restart following this rename. Also try to replace cgateu.so with cgateur64.so.
go to post Eduard Lebedyuk · Dec 11, 2023 Any chance user has multibyte unicode characters in the password?
go to post Eduard Lebedyuk · Dec 8, 2023 Nice! What performance hit are we talking about? No way this level of detail is free.
go to post Eduard Lebedyuk · Dec 8, 2023 %ALL namespace is another way to share routines/classes globally but without the need to modify CACHELIB/IRISLIB.
go to post Eduard Lebedyuk · Dec 6, 2023 Encountered similar issue: ERROR #743: CA certificate file is not valid [%OnValidateObject+97^Security.SSLConfigs.1:%SYS] Turns out, Extension:basicConstraints field of the CA certificate must contain CA:TRUE. The BasicConstraints extension is intended primarily for CA certificates. It has a single Boolean variable, “cA”, which reflects whether or not the certificate is a CA certificate. If the certificate is a CA certificate, it can also declare a pathLen constraint that dictates how many sub-CAs are allowed to exist in the hierarchy of CAs. To check: Set bc=$System.Encryption.X509GetField(cer,"Extension:basicConstraints") Write bc["CA:TRUE"
go to post Eduard Lebedyuk · Nov 30, 2023 Add %JSONIGNOREINVALIDFIELD param to your class and don't add Messages/SharedRelations properties. Parameter %JSONIGNOREINVALIDFIELD As BOOLEAN = 1;
go to post Eduard Lebedyuk · Nov 28, 2023 Why not just use %JSONFIELDNAME? Anyway, this works: Property "@name" As %String; Property "😋_are_you_sure_😋" As %String;
go to post Eduard Lebedyuk · Nov 24, 2023 Is CDATA actually getting sent or is it just a visualization issue? I suppose you can use HS Trace operation or IO logging to get the raw output.
go to post Eduard Lebedyuk · Nov 22, 2023 Try to start Remote Gateway from the SMP and check the error there. Current error you see is caused by the fact that Gateway is not started or IRIS can't connect to it.