Sync is your friend! Declare it after calls and configure it to wait for the answers.
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
- Log in to post comments
Sync is your friend! Declare it after calls and configure it to wait for the answers.
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
The problem with web applications is that sometimes the behaviour is a bit "stange", it's possible that the DTL page would be cached on explorer's memory and this makes it to work with errors.
It's really easy, to declare a dynamic object you just need:
set dynamicObject = {}
do dynamicObject.%Set(...)https://docs.intersystems.com/csp/docbook/Doc.View.cls?FIND=CLASSES+%25…
Have you tried this?
https://community.intersystems.com/post/how-do-you-change-namespaces-ro…
Well, not sure if this would work but maybe you can set the stream into a dynamic object using the stream>base64 transformation and compare base64 Vs base64.
https://docs.intersystems.com/iris20242/csp/documatic/%25CSP.Documatic…
Performance in what functionality? Interoperability? SQL queries? Database configuración?
To do async calls shouldn't be a problem:
https://docs.intersystems.com/iris20243/csp/docbook/DocBook.UI.Page.cls…
What functionality do you need that is not covered by the community license?
It's a pleasure @Tani Frankel ! Congratulations for your great exercise!
I think that @Laura Blázquez García is doing something similar to what you are asking for, using the DTLs of IRIS for Health to transform an ORU^R01 message into FHIR resources in a bundle, maybe you can send a message to her.
Maybe dequeuing state is what you are looking for:
DEQ - Dequeue wait (currently unusued)
Record Map is used to parse rows from CSV files into Objectscript objects, you can use DTLs or by code directly to get the fields from the HL7 message and save into a string variable. Something like:
set myString = request.GetValueAt("PID:3.4.1")In this case request is an Enslib.HL7.Message variable.
It's not working because the images looks like have been removed: https://containers.intersystems.com/contents
@Michael Golden gave me the solution!
CREATE FOREIGN SERVER server-name FOREIGN DATA WRAPPER jdbc CONNECTION 'mysqlconnection' NODELIMITEDIDSDoes the file generated from pandoc (the initial output.pdf) readable?
Don't forget to enable SSL connections for SuperServer!
.png)
Well, it really simplifies the task of search and deep dive into hundred of community articles to get a specific piece of code, in my case, how to export SQL Gateway configurations:
https://community.intersystems.com/ask-dc-ai?question_id=251638
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-s…
Hi @Timo Lindenschmid ! Thank you for your answer, I've tried disabling that option but it doesn't work:.png)
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>]
Clicking on New button you will close the current open DTL to create a new one.
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
}Have you checked the messages.log file?
Something like this @Jose-Tomas Salvador ?
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.
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.U…
This means that assign only works in the context of a business process, you can't modify the original message received.
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.
But it depends of your IRIS version. For previous versions only 8 and 11 were supported.
It's supported, in theory:
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…