Hi @Tatiana Krupenya !
Thanks for the article!
What is the way to establish connections to IRIS via DBeaver over the SSL?
- Log in to post comments
Hi @Tatiana Krupenya !
Thanks for the article!
What is the way to establish connections to IRIS via DBeaver over the SSL?
Hi @Joe Jones !
Take a look at the following sample app by @Guillaume Rongier - it contains FHIR to HL7 transformation example, which is in fact JSON to HL7 also.
Hi @Jordan Everett !
You can debug in terminal using ZBreak And Break commands.
E.g. insert in the ObjectScript code a new line where you need to step-by-step debugging:
Break "L"
which means turn on interactive terminal debugging with line-by-line mode
and use "go" command to run the line of code.
Thanks @Gertjan Klein , it is not that bad for the value it provides
Also IPM enabled images are available.
you can use
FROM=intersystemsdc/iris-community:preview
to get the latest 2023.1 preview build with IPM onboard.
Great stuff!
If this increases the building time? How much?
BTW, turned out that @Sergey Mikhailenko has created and published the module that implements exactly this approach with delegated authentication.
So if you want to turn on the passwordless mode in your iris docker image just add the line:
zpm "install passwordless"I already did it here in a basic IRIS template.
Is the video of the webinar available?
The article is by @Lucas Enard who worked together with @Guillaume Rongier on the topic. That's why I mentioned Guillaume to help with your question
Thanks @Muhammad Waseem !
I know about FHIR schema json opportunity and use it too.
But what I'm talking about here in this question is revealed in this video.
Besides Patient resource we can submit "StructureDefinition" resource (listed above in a spoiler), which introduces constraints in the FHIR standard in this particular FHIR server I'm working with.
And the second example above is the Patient resource with this profile in meta section which FHIR server should use to "fire" constraints. But it doesn't.
@Patrick Jamieson , could you please help here?
You are welcome! Thanks for revealing such a helpful topic!
I like 'helper mode' in post creation. I expect it is "On" when member contributes for the first time?
BTW, I like the method creating database via SQL command "CREATE DATABASE".
The only difference with the manual creation via Management Portal or via %Installer that in this case the default /csp/namespace application is not being introduced.
Hi @Heloisa Paiva !
Great article!
Titles a little confuse me:
First title states "Create Namespace",
but in fact with "CREATE DATABASE DATABASE_NAME" both namespace and database are being created.
Second title says" Create Database", where you says how to create a table inside the database, right?
Great @Guillaume Rongier ! Do you have an example code?
Also I can recommend to have a look at Classroom Courses offerings. Tagging @Janine Perkins and @Jenny Ames
for more info.
And for switching back to original cls/mac right-click and choose “View Other” in a context menu
Also it is not clear how to create UUID/GUID.
I tried to create a new one with:
write $System.Util.CreateGUID()and use the result in a bundle - this didn't work.
@Patrick Jamieson, what is the proper way to create valid UUID for InterSystems FHIR server?
@Patrick Jamieson , do we really need that restriction?
Turned out it doesn't like a patient id as, "patient", or "1".
It tried to substitute the id to something like "274f5452-2a39-44c4-a7cb-f36de467762e" - and this worked.
Does it mean that internal referencing id should be GUIDs?
Really like the new feature of positioning to error line in code by copy-n-paste the error message!
@Brett Saviano @Raj Singh - great job, thanks a lot!
Thanks @Tani Frankel !
Hi @Lorenzo Scalese ! Yes! It is in Location header, as @Tani Frankel mentioned.
This is what I received in headers:
http://localhost:52773/fhir/r4/Patient//1983/_history/1
So, the id is 1983.
It is a bit different from what the public FHIR server on hl7.org/fhir returns - it returns the id also in a response.
Not sure though what is the "standard" behavior but if find it convenient enough to have the id in the response.
Thanks, @Muhammad Waseem!
the id is being generated for a new patent
Helpful, thank you @Neerav Verma
In addition to what @Dmitry Maslennikov told here is the way to enable IRIS BI(Analytics) programmatically:
do EnableDeepSee^%SYS.cspServer("/csp/user/")This is to "push" bio sharing I guess ;)