Hi Developers!
Here is the bonus results for the applications in InterSystems Python Programming Contest 2023:
Hi Developers!
Here is the bonus results for the applications in InterSystems Python Programming Contest 2023:
Hi Community,
It's voting time! Cast your votes for the best applications in our InterSystems Python Programming Contest 2023:
%20(3)(1).jpg)
How to vote? Details below.
If one of your packages on OEX receives a review you get notified by OEX only of YOUR own package.
The rating reflects the experience of the reviewer with the status found at the time of review.
It is kind of a snapshot and might have changed meanwhile.
Reviews by other members of the community are marked by * in the last column.
I also placed a bunch of Pull Requests on GitHub when I found a problem I could fix.
Some were accepted and merged, and some were just ignored.
So if you made a major change and expect a changed review just let me know.
I am trying to do a rewrite using the webgateway-nginx docker container but getting an "unknown directive sub_filter' message. How can I add additional nginx modules into a webgateway nginx container?
Hi,
Getting the below error while posting FHIR resource to FHIR Server.png)
Looking Forward
Thanks
Currently I have a program that is going to be used to compare global nodes between namespaces. Using nested FOR statements I am stepping through global nodes and comparing between the namespaces, if the global values are different I then parse the node comparing each delimited segment.
This is working.
I want to now be able to set what global I am in as a variable to expand on this concept.
Program architecture
1.Initializing program that has user prompts to change starting nodes. This program contains the FOR nests to step through nodes.
Is there any built-in functionality to send out an email or a text message when a mirror member fails?
Hey Community,
Enjoy watching the new video on InterSystems Developers YouTube:
Hi,
I am trying to find out individual segment values in Message viewer and it display the values in Management portal, copied the query and run it on SQL editor, Segment values displayed with blank. Is there a way to get the individual segment values using query?
Yet another example of applying LangChain to give some inspiration for new community Grand Prix contest.
I was initially looking to build a chain to achieve dynamic search of html of documentation site, but in the end it was simpler to borg the static PDFs instead.
mkdir chainpdf cd chainpdf python -m venv .
Hi Guys,
I've this client method in my Zen page which looks good and compile fine:
.png)
I first tried calling this clientmethod in %DrawHTML() like : var res=zenPage.getNewPrinters(); but for some reason didn't work not sure why I even tried simplifying my clientMethod with simple code like just showing alert but still this call didn't work
So now I'm trying copying the code of my clientmethod to %DrawHTML() but I'm getting a compilation error not sure why everything is the same so why is this code is raising a compalation error when placed between &js<> and working fine in my clientMethod?
I'm at a loss with configuring the IRIS ODBC driver (v02.10) on my Amazon Linux machine, connecting to a REMOTE IRIS backend. It should be simplified by not requiring a DSN (the app uses a DSN-less connection and generates the connection string). I have
The meaning of each timeout value is as follows.
1. [Server response timeout]
If IRIS/Caché processing (routine or query execution) does not finish within this set time, the browser will return an error.
For example, if this value is 60 seconds and it takes 90 seconds to execute a routine/method/query, an error will occur.
2. [Queued request timeout]
For each IRIS/Caché server configured in CSP/REST, you can limit the number of processes that can run CSP/REST concurrently.
Hi Community,
Can I please check what the size limit for the parameter in $SYSTEM.Encryption.Base64Decode() method ?
I have a 12 page base64 encoded PDF document, which is failing when decoded. I am getting the error below:
ERROR <Ens>ErrException: <ILLEGAL VALUE>zXSDToLogical+1^%Library.Binary.1 -- logged as '-' number - @''
OBX:5 size=4233781
I tried the below from terminal, but it is not able copy the whole string for the parameter so couldn't execute it.
Set text=$SYSTEM.Encryption.Base64Decode("JVB<<TRUNCATED>>)
I am able decode the same string using notepad++ and save it as PDF.
My original ZAUTHENTICATE.mac to use Delegated sign on did not include GetCredentials(), however I am being told it probably should have it so I am eliminate an error I am seeing when trying to troubleshoot the ZAUTHENTICATION. I am trying to add the GetCredentials() from the documentation to the existing ZAUTHENTICATE.mac but I am getting an error
GetCredentials(ServiceName,Namespace,Username,Password,Credentials) Public {
// For console sessions, authenticate as _SYSTEM.
If ServiceName="%Service_Console" {
Set Username="_SYSTEM"
Set Password="SYS"
Quit $SYSTEMStatus.InterSystems announces its first developer preview for the 2023.3 release of InterSystems IRIS® and InterSystems IRIS for HealthTM.
Future preview releases are expected to be updated biweekly and we will add features as they are ready.
Please share your feedback through the Developer Community so we can build a better product together. Initial documentation can be found at these links below.
This app offers an easy interface to analyze storage:
Follow the instructions on the README file from the GitHub repository, and configure the settings to connect to your instance.
Since it was built with Python and Django, you can easily add specific analysis methods in the api/methods.py and use the views on views.py to display them.
In the ever-evolving landscape of data science and machine learning, having the right tools at your disposal can make all the difference. In this article, we want to shine a spotlight on two essential Python libraries that have become indispensable for data scientists and machine learning practitioners alike: Matplotlib and scikit-learn.
Matplotlib is a versatile and powerful library for creating static, animated, and interactive visualizations in Python.
Hello developers!
We are holding the first technical article contest on Japan's InterSystems Developer Community!
The first contest is a technical document writing contest, and you can submit any content related to the InterSystems IRIS/InterSystems IRIS for Health. (The article must be in Japanese.)
✍ InterSystems Japan Technical Document Writing Contest: Articles related to IRIS ✍
🎁 Participation prize: There will be a participation prize for everyone who submits an article for the contest.
🏆 Special prize: Authors of three selected works will receive special prizes.
Entering the contest is easy! Please post an article related to IRIS on the developer community during the period from Wednesday, September 6, 2023 to Monday, November 6, 2023.
Hi Interoperability experts!
Recently noticed an interesting conceptual discussion in our Interoperability Discord channel to which I want to give more exposure.
All we know that typical InterSystems Interoperability production consists of the following chain:
Inbound adapter->Business Service->Business Process->Business Operation->Outbound adapter.
And Business Process (BO) here is always considered as a passive "listener" either on port/folder/rest API for an incoming data.

Hello to all developers and IRIS users.
I am submitting to the competition a project for an alternative IRIS management portal that I have long wanted to create. The project was implemented on the Django framework and the intersystems_irispython-3.2.0-py3-none-any.whl library using native IRIS. The Django project is integrated with the telegram messenger and can be launched from a docker container or directly.
To run it, you need to create a .env file in the project root for which you can use the .env_example example.
DJANGO_DEBUG=True
DATABASE_URL=sqlite:///db.Doing a new project with %JSON.Adaptor, unexpectedly realized that %JSON.Adaptor does not support export to native JSON. %JSONExport just outputs directly to the current device, and there are two more methods %JSONExportToString, and %JSONExportToStream.
In conjunction with generating REST from swagger specification, where any generated method accepts as a result %DynamicObject, which is good.
I have multiple places in my REST where I have to return JSON for an object, but I have to modify the result a bit, just extend it with some other way.
Hi,
I want to write a class to write a customized SSL/TLS certificate expiry alerts using ObjectScript?
Any sample code for reference available?
Thanks,
Hi Community!,
I've published a new versión of IrisApiTester, I included some new features:
Hi Community,
Enjoy watching the new video on InterSystems Developers YouTube:
⏯ Getting to Know FHIR: The Best Explanation of FHIR They've Ever Heard @ Global Summit 2023
The VS Code extension for Deltanji source control has been updated to version 1.2.3. View the change log here for a full list of updates: https://bit.ly/3PqMJ26
Users can now benefit from the VS Code Quick Diff feature when using the ObjectScript extension. To use this feature just click on the gutter decorations to reveal an inline diff experience, where you can contribute contextual commands. You just need to provide VS Code with the original contes of any given file.

Find out more about the Quick Diff feature here > https://bit.
I am mapping a field to the FHIR Location resource field address.line. Using message class HS.FHIR.DTL.vR4.Model.Resource.Location
The line field is repeating
.png)
I set field as such,
.png)
This causes the error,
ERROR <Ens>ErrException: <INVALID OREF>zTransform+71^AH.AHEDSLPFD.Transforms.ReltioEntityToPFDFHIRLocation.1 -- logged as '-' number - @' If 'tIgnore { Set tSC=target.address.line.SetAt(zVALz,(1)) }'
Any suggestions on how I can format the target?
InterSystems team is heading to MIT's largest hackathon this weekend where we will introduce a tech challenge for hackers.
We offer hackers to use IntegratedML or InterSystems Supply Chain Orchestrator in their projects in order to compete for some really cool prizes!
If you are in Boston and would be interested to be an InterSystems mentor at the event - drop me a line.
UPDATE: We have our amazing winners! Check out these projects:
First Place – Fluxus Description | GitHub
Second Place – Carta Description | GitHub
Third Place – Manifest Description | GitHub
Thanks to everyone who took part in InterSystems Challenge!
Don't forget to join our Discord Server to stay in touch and receive notifications on upcoming InterSystems programming contests!
Hi,
Can you please suggest how to import vR4 packages for my FHIR application implementation. I can see SDA3 packages but want to work with vR4.
Is there any version compatibility for SDA3/vR4? What is the difference of SDA3 and vR4?
Thanks,
Hi Developers!
We are pleased to announce the launch of the
🏆 2nd Tech Article Contest on Chinese Developer Community🏆
From September 19 to November 24, 2023 (Beijing Time), we welcome you to contribute articles related to InterSystems technology.
🎁 Prize for Everyone: A special prize pack for each author who takes part in the contest.
🏆 Main Prizes: Apple AirPods Pro; Osprey Proxima Backpack; Home Office Pro Lap Desk; Sound Machine with Wireless Charger; JBL Pulse 5 Bluetooth Speaker; Sound Machine with Wireless Charger; Hammock InterSystems; Light Up Your Logo Charging Pad; InterSystems Developer Community Blanket
.png)