Hey Developers,
See how the InterSystems IRIS FHIR Server allows you to develop and deploy your FHIR applications on AWS without manual configuration and deployment:
⏯ Getting Started with the InterSystems IRIS FHIR Server on AWS
InterSystems IRIS is a Complete Data Platform
InterSystems IRIS gives you everything you need to capture, share, understand, and act upon your organization’s most valuable asset – your data.
As a complete platform, InterSystems IRIS eliminates the need to integrate multiple development technologies. Applications require less code, fewer system resources, and less maintenance.
Hey Developers,
See how the InterSystems IRIS FHIR Server allows you to develop and deploy your FHIR applications on AWS without manual configuration and deployment:
⏯ Getting Started with the InterSystems IRIS FHIR Server on AWS
Hey Developers,
This week is a voting week for the InterSystems Multi-Model Contest! So, it's time to give your vote to the best solutions built with InterSystems IRIS.
🔥 You decide: VOTING IS HERE 🔥
How to vote?
There's been quite a bit of discussion lately in this forum on the tools available in IRIS for using both XML and JSON, and debate on cross-conversion between the two formats.
A week or so ago I posted details of a set of tutorials I'd put together on integrating the Node.js-based QEWD technology with IRIS, working over a network. As part of that set of tutorials, I've been detailing how to use the various multi-model capabilities of the build-in QEWD-JSdb abstraction of IRIS.
Hi Community,
Enjoy watching the new session recording from the InterSystems AI+ML Summit 2021:
Please see PerfTools IO Test Suite for a later version of the Random Read IO tool.
This tool is used to generate random read Input/Output (IO) from within the database. The goal of this tool is to drive as many jobs as possible to achieve target IOPS and ensure acceptable disk response times are sustained. Results gathered from the IO tests will vary from configuration to configuration based on the IO sub-system. Before running these tests ensure corresponding operating system and storage level monitoring are configured to capture IO performance metrics for later analysis.
Hi Developers!
We had a set of technology bonuses for the InterSystems Grand Prix contest.
Good day, developers!
The "apptools-admin" project is not only a set of tools for the administrator, but a platform for the rapid creation of a prototype of any solution. For example, Photo Album, Music Player, and Personal Library all come together in a user-friendly treasure chest design.
Load http:// your-host:your-port/apptoolsrest/a/infochest
Change the path to your treasure files and start viewing, listening or reading from any convenient device: desktop, tablet or smartphone.

Hi folks!
Sometimes when we develop a mockup or PoC there is a need for a simple interface that will provide data in IRIS in JSON against SQL queries.
And recently I contributed a simple module that does exactly that:
accepts SQL string and returns the JSON.
How to install? Just call:
zpm "install sql-rest"
If you install it in a namespace X it will setup a /sql endpoint to your system that will accept POST requests with SQL string and will return the result for you for the data available in the namespace X.
This is the first InterStstems programming contest that we participated in! Come check out and vote for us!
The overbooking management system combines the unique conditions of the hotel, such as room prices, order channels, customer needs (etc.). System uses machine learning algorithms (such as: KNN/ES-RNN.
If you want to start IRIS as a service on CentOS7 you can use systemd.
Login as root and create a new file iris.service in /etc/systemd/system.
# vi /etc/systemd/system/iris.service
[Unit] Description=Intersystem IRIS Service After=network.target [Service] Type=forking WorkingDirectory=<iris-install-dir> User=root ExecStart=<iris-inst-dir>/bin/iris start "<instance>" ExecStop=<iris-inst-dir>/bin/iris stop "<instance>" quietly Restart=on-abort [Install] WantedBy=default.target
<iris-install-dir> = Directory where you installed IRIS on Centos7 i.e.
I'm participating in the Developing with InterSystems Objects and SQL with Joel Solon. The course is very nice and I will share with you some tips I got during the training. Tips presented in the day 3:
I'm participating in the Developing with InterSystems Objects and SQL with Joel Solon. The course is very nice and I will share with you some tips I got during the training. Tips presented in the day 2:
hello, I had build a DocDB referring the code from here: https://community.intersystems.com/post/how-can-i-create-properties-doc…
Here are the structure of the json Documents I have added in my database called 'Orders'.
InterSystems API Management (IAM) - a new feature of the InterSystems IRIS Data Platform, enables you to monitor, control and govern traffic to and from web-based APIs within your IT infrastructure. In case you missed it, here is the link to the announcement. And here's an article explaining how to start working with IAM.
In this article, we would use InterSystems API Management to Load Balance an API.
In our case, we have 2 InterSystems IRIS instances with /api/atelier REST API that we want to publish for our clients.
There are many different reasons why we might want to do that, such as:
Hi Community,
See how X12 SNIP validation can be used in InterSystems IRIS data platform and how to create a fully functional X12 mapping in a single data transformation language (DTL):
Hi Everyone!
I try to get the file size from an Archive in a SFTP service. The input is a %Stream.Object.
I'm trying to use input.Size or input.SizeGet() but i´ve got the next error:
.png)
Any suggestions?
Thanks in advance =D
Hi Community! Today I'd like to share with you a link to some exercises from a workshop about developing REST APIs and how to manage them using InterSystems API Manager.
It includes step by step exercises to:
You will find it all here: https://openexchange.intersystems.
In the first installment of this article series, we discussed how to read a “big” chunk of data from the raw body of an HTTP POST method and save it to a database as a stream property of a class. Now let’s look at how to save such data and metadata in JSON format.
Unfortunately, Advanced REST Client doesn’t let you compose JSON objects with binary data as a value of a key (or maybe I simply haven’t figured out how to do it), so I decided to write a simple client in ObjectScript to send data to the server.
I created a new class called RestTransfer.
InterSystems has identified an issue with product distributions containing Certificate Authority certificates that expire at the end of 2020. This issue does not affect system operation or system security in any way, although it does generate alerts about expiring certificates in the cconsole.log or messages.log files. The messages may be ignored and there are instructions below to eliminate them.
The issue affects the following versions:
Hi,
I just published isc-mem-config on OpenExchange and ZPM. It's a prototype to test whether this kind of user experience (UX) is a good fit for novice and / or more seasoned users. The settings it generates are already fairly-good-practice :-), but also being reviewed by experts within InterSystems in parallel.
Happy to hear your feedback on the applicability to your and/or your customers' day-to-day business, where this would fit best in the broad spectrum ranging from documentation, over installation to standalone tools.
A question came up in the InterSystems developer community concerning the possibility of creating a TWAIN interface to a Caché application. There were several great suggestions on how to get data from an imaging device on a web client to a server, then store this data in a database.
However, in order to implement any of these suggestions, you need to be able to transfer data from a web client to a database server and store the received data in a class property (or a table cell, as was the case in the question).
Hi I am new here. Please let me know where can I find posts related to using container registry. Thanks in advance!
Hey Developers,
Please welcome the new session recording from the InterSystems AI+ML Summit 2021:
When using "IDENTITY" as my primary key, I can select the last inserted ID with
SELECT LAST_IDENTITY() FROM %TSQL_sys.snf;
Actually this is how Hibernate + Iris' Driver acquires the inserted ID when mapping with
@GeneratedValue(strategy = GenerationType.IDENTITY)
Now, considering that I am using the type "SERIAL" as my primary key instead, how can I get the last inserted ID?
Note that with "SERIAL" I can forcefully insert any value for this ID, from which Iris will continue generating values.
When I create a TASK on the Primary mirror member and Try to create the same TASK in the backup mirror member, It Gives me CSP Application error.
The TASK gets created in the Primary node without any errors and When creating in the Backup node it prompts the error.
It happens is IRIS and I didn't face this in CACHE.
Finally what I did is export the TASK in Primary and Imported in Backup.
Is this a feature of IRIS?
想问一下IRIS里有SHA256withRSA 加密算法的实现吗?因为最近用到该加密算法进行接口调用。
Translated by moderator
I want to know if IRIS has SHA256 with RSA encryption algorithm? we have interface needing this encryption algorithm recently.
I have vendors asking for verification that messages for locations are coming through to them. I can get generic ADT_A01 type of numbers in Activity. I'd really like to get some good SQL queries that can give me a count of MSH.4s (for example) for a day for X Operation. I'm not sure which table to look at for that information.
Hey Developers,
See how you can use InterSystems IRIS and Alteryx together to provide analytics and insights to your users.
How can I activate and configure web applications by code without going to the management portal?
And how to configure the rights of the web-application also by code without clicking on the form in the management portal?
Hello,
I have established an ODBC connection with our client based on credentials they provided. The test connection was successful and after using the Link Table wizard I can now see the client's tables and properties. However when we try to execute a query in IRIS we are getting error code -226. I'm trying to determine if this could be just a simple setting problem in IRIS or something with the client.
We have tried with PostgreSQL as well as with TSQL. Same result for each.
Has anyone seen this error before and could it be pointing me in a certain direction?