go to post Luis Angel Pére... · 20 hr ago You have to write your object as String into a Ens.StreamContainer and sent it to a EnsLib.File.PassthroughOperation Business Operation.
go to post Luis Angel Pére... · 20 hr ago Check the configuration of api/atelier web application. It should be enable to connect through port 80: https://community.intersystems.com/post/having-trouble-connecting-your-v...
go to post Luis Angel Pére... · 20 hr ago Try modifying the default action RESTRICT for CASCADE like this: ALTER TABLE table DROP COLUMN column CASCADE %DELDATA https://docs.intersystems.com/iris20251/csp/docbook/DocBook.UI.Page.cls?...
go to post Luis Angel Pére... · May 3 Well, I guess that the reason for the storage of DICOM images out of the database is the huge size of these images. I was working for a time for a VNA provider and many studies composed by hundred of DICOM images usually weighted more than 4 and 5 GB.
go to post Luis Angel Pére... · Apr 29 Have you tried changing the column names avoiding whitespaces and "-" character?
go to post Luis Angel Pére... · Apr 27 Maybe my example can help you: https://community.intersystems.com/post/diagnosis-searching-similarities...
go to post Luis Angel Pére... · Apr 23 I wrote an article 2 years ago, maybe you can use it: https://community.intersystems.com/post/predictions-integrated-ml-and-iris I've another about time series predictions, tell me if you are interested.
go to post Luis Angel Pére... · Apr 22 You can see here what is each version: https://docs.intersystems.com/iris20251/csp/docbook/Doc.View.cls?KEY=PAG...
go to post Luis Angel Pére... · Apr 21 Do you get any error from de Ollama console? Maybe you can try directly with Mistral docker image, bypassing the Ollama image: https://hub.docker.com/r/ai/mistral
go to post Luis Angel Pére... · Apr 19 Do you have IRIS configured in the same network that Ollama? networks: - iris-llm2-network
go to post Luis Angel Pére... · Apr 9 Have you tried the notation: file:///yourfolder/yoursubfolder/yourfile.xsd?
go to post Luis Angel Pére... · Mar 27 Maybe I'm missing something. This is my container: ARG IMAGE=containers.intersystems.com/intersystems/iris-community:latest-preview But I can't see the button.
go to post Luis Angel Pére... · Mar 27 You can use...Embedded Python! You just need a business service EnsLib.File.PassthroughService to get the the json file and send it into a BP with a ClassMethod to get all the lines, here you can see an example: https://www.geeksforgeeks.org/read-a-file-line-by-line-in-python/ You can save the object directly from the Embedded Python method or return a list of strings and map it into an Objectscript object.