go to post Luis Angel Pére... · Aug 28, 2024 Some time ago I wrote some articles doing something similar to what you are trying now: https://community.intersystems.com/post/using-fhir-adapter-offer-fhir-se...
go to post Luis Angel Pére... · Aug 28, 2024 I install it directly from the intersystems_irispython-3.2.0-py3-none-any.whl file (here): pip install intersystems_irispython-3.2.0-py3-none-any.whl
go to post Luis Angel Pére... · Aug 28, 2024 Hi @Timo Lindenschmid ! Thank you for your answer, I've tried disabling that option but it doesn't work: And the result for the query: [SQLCODE: <-230>:<Foreign table query Execute() failed>] [%msg: <Foreign Tables - ERROR #8104: Gateway Exception: <GATEWAY> java.sql.SQLSyntaxErrorException com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:112) Remote database reported error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"patient" T1' at line 1>]
go to post Luis Angel Pére... · Aug 12, 2024 Clicking on New button you will close the current open DTL to create a new one.
go to post Luis Angel Pére... · Aug 12, 2024 In this article @Eduard Lebedyuk creates a production monitor to check the inactivities for the different components You can modify the following code: If (tDiff > tTimeout) && ((lastActivityReported="") || ($system.SQL.DATEDIFF("s",lastActivityReported,lastActivity)>0)) { Set tText = $$$FormatText("InactivityTimeoutAlert: Inactivity timeout of '%1' seconds exceeded for host '%2'", +$fn(tDiff,,0), tHost) Do ..SendAlert(##class(Ens.AlertRequest).%New($LB(tHost, tText))) Set $$$EnsJobLocal("LastActivity", tHost) = lastActivity } Replacing the SendAlert by: If (tDiff > tTimeout) && ((lastActivityReported="") || ($system.SQL.DATEDIFF("s",lastActivityReported,lastActivity)>0)) { Set tText = $$$FormatText("InactivityTimeoutAlert: Inactivity timeout of '%1' seconds exceeded for host '%2'", +$fn(tDiff,,0), tHost) Set tSC = ##class(Ens.Director).EnableConfigItem(tHost,0) Set tSC = ##class(Ens.Director).EnableConfigItem(tHost,1) Set $$$EnsJobLocal("LastActivity", tHost) = lastActivity }
go to post Luis Angel Pére... · Aug 3, 2024 From the official documentation: https://www.hl7.org/fhir/http.html#ccreate Conditional creations based on external identifier. I'm not sure if it's implemented on IRIS FHIR server.
go to post Luis Angel Pére... · Jul 31, 2024 Description of assign action from the official documentation: Assigns values to properties in the business process execution context. https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.UI... This means that assign only works in the context of a business process, you can't modify the original message received.
go to post Luis Angel Pére... · Jul 31, 2024 IRIS 2024.1 has no web server (but community version has). The fastest way to configure a web server is to install an IIS or Apache before to the IRIS installation and IRIS will detect and configure it.
go to post Luis Angel Pére... · Jul 25, 2024 But it depends of your IRIS version. For previous versions only 8 and 11 were supported.
go to post Luis Angel Pére... · Jul 25, 2024 It's supported, in theory: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...
go to post Luis Angel Pére... · Jul 21, 2024 Is there any error in messages.log file (under mgr folder)?
go to post Luis Angel Pére... · Jul 16, 2024 Did you try what @Marc Mundt told you? Check if there is a process that is using the port dedicated for the JDBC conenction (in your warning the port 5003).
go to post Luis Angel Pére... · Jul 15, 2024 Hi! @Learning by_passion Take a look to this page of the official documentation: https://docs.intersystems.com/iris20242/csp/docbook/DocBook.UI.Page.cls?...
go to post Luis Angel Pére... · Jun 12, 2024 The only way to insert info into a different database is to configure a sql gateway connection by JDBC and execute the SQL with the insert.
go to post Luis Angel Pére... · Jun 12, 2024 Just the first line? set str=##class(%Stream.FileCharacter).%New() do str.LinkToFile("c:\myfolder\file.csv") set $listbuild(VALUE1,VALUE2,VALUE3)=$listfromstring(str.ReadLine())
go to post Luis Angel Pére... · Jun 12, 2024 %Stream.FileBinaryGzip extends %Stream.FileBinary, so they are practically equals, the only difference is the gzip compression and maybe a read process a bit slower with Gzip than just with FileBinary (and this is more a feeling than a fact).