go to post Luis Angel Pére... · Dec 27, 2023 Log compression? I don't recall that the logs are compressed, I know that Journals are compressed since 2022.1 and streams can be compressed too, but I don't know anything about log compression. Someone to enlighten us?
go to post Luis Angel Pére... · Dec 22, 2023 Well, I did something similar to create a Firebase connector, I created my own inbound adapter and define a business services to use it, after that I configured the interval in the business service and that's all! You can review the article that I wrote about it: https://community.intersystems.com/post/connecting-intersystems-iris-and... For your case the interval would be 86400 seconds to execute the inbound adapter task once each day. If you have any doubt don't hesitate to ask me.
go to post Luis Angel Pére... · Dec 22, 2023 Check this page: https://www.baeldung.com/ops/root-user-password-docker-container#2-using...
go to post Luis Angel Pére... · Dec 21, 2023 Have you checked ^LOCKTAB utility? https://docs.intersystems.com/iris20233/csp/docbook/DocBook.UI.Page.cls?...
go to post Luis Angel Pére... · Dec 14, 2023 Permissions must not be assigned automatically to the users when you create the FHIR server, it doesn't make sense to allow any user to access and modify the data from the server. You can create an specific role for FHIR access and assign it to the specific users.
go to post Luis Angel Pére... · Dec 12, 2023 Please, review your iris.key file and look for under ISC.IAM section the license_expiration_date info, if it's expired you have to open a case to WRC requesting a new Kong license as @Enrico Parisi said
go to post Luis Angel Pére... · Dec 12, 2023 Yeah, probably is your best option. Anyway, I think that you could add the pieces of the base64 field as values of the Base64EncodedFile list removing the (1) in my code: Do stream.Rewind() While (stream.AtEnd = 0) { // Not sure about the len Set len = 3641144 do target.SetValueAt(stream.Read(.len), "LetterAttachment(1).Base64EncodedFile", "append") } The problem of this is that you couldn't include more documents attached because all the list would belong to just one document.
go to post Luis Angel Pére... · Dec 12, 2023 I was reviewing the documentation and I think that the only option available is to split your base64 by the MAXSTRING limit and append all the pieces that you get using SetValueAt defining the action as append: method SetValueAt(pValue As %String, pPropertyPath As %String, pAction As %String = "set", pKey As %String = "") as %Status It could be something like: Do stream.Rewind() While (stream.AtEnd = 0) { // Not sure about the len Set len = 3641144 do target.SetValueAt(stream.Read(.len), "LetterAttachment(1).Base64EncodedFile(1)", "append") }
go to post Luis Angel Pére... · Dec 8, 2023 Those are good questions, I guess that the idea to not integrate it into the common distribution is to keep it lighter as possible.
go to post Luis Angel Pére... · Dec 8, 2023 You can try the IRIS Community version for Docker: https://containers.intersystems.com/contents?family=InterSystems%20IRIS%...
go to post Luis Angel Pére... · Dec 8, 2023 Ok, it seems that your didn't install an IRIS version with Machine Learning capabilities. You can see on this screenshot all the different versions available.
go to post Luis Angel Pére... · Dec 6, 2023 Maybe it's not well configured, check this documentation about the configuration: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls... In summary, query this table to be sure about the model configuration: INFORMATION_SCHEMA.ML_TRAINING_RUNS
go to post Luis Angel Pére... · Dec 5, 2023 Please, check your license to be sure that IntegratedML is included.
go to post Luis Angel Pére... · Dec 5, 2023 I suggest you to publish a question for the community explaining more in detail what is your problem what you want to achieve step by step.
go to post Luis Angel Pére... · Dec 5, 2023 You are absolutely right! I used a previous code as base for this article and I didn't realize that I was using the Read() method for the %CSP.Stream, I'll fix it. Thank you for the warning Enrico!
go to post Luis Angel Pére... · Dec 4, 2023 Please, take a look to this open exchange example by @Alberto Fuentes https://openexchange.intersystems.com/package/workshop-iris-oauth2
go to post Luis Angel Pére... · Dec 1, 2023 If your operative systems is Windows execute the following command to check the used ports: netstat -aon If it's Linux try with this one: sudo lsof -i -P -n | grep LISTEN These commands will show you a list of ports in use and the process what is listening on it.
go to post Luis Angel Pére... · Nov 30, 2023 Just a small correction, 6 is the normative level. Ineed, the normative resources won't be modified in the future but the devil is in the detail. More and more resources below the level 4 will be used by organizations that would find out major changes on it in future versions.