Hello Community,
I got the below error while creating a new database.
.png)
Hello Community,
I got the below error while creating a new database.
.png)
Hello Community,
I've enabled the JWT Authentication in my web application. I invoked the /login page to get the JWT and it creates an entry in %SYS.TokenAuth table. Is there any time span for the entries will rid out from the table automatically or It's a manual process? Where can I find the JWT signature private/public key
settings screenshot
.png)
web application
.png)
For the upcoming Python contest, I would like to make a small demo, on how to create a simple REST application using Python, which will use IRIS as a database. Using this tools
Hi Community,
Watch this video to learn how to improve care and reduce costs with the HealthShare Care Management Notifications Solution Pack, a fully managed cloud solution from InterSystems.
⏯ What is the HealthShare Care Management Notifications Solution Pack
🧑🏫 Course developer: @Kathryn.Lindsay. If you have any comments, please don't hesitate to tag her.
Hi, How can I get an instance of stream which is a successor of %Stream.Object in a method that handles a REST POST request?
#dim request as %CSP.Request = %request
set content = request.Content
This returns a variable of type %CSP.Stream which is totally useless, because %CSP.Stream does not inherit from %Stream.Object
Hi Community,
We're super excited to invite you to the webinar on How GitOps can use the InterSystems Kubernetes Operator prepared as a part of the Community webinars program.
Join this webinar to learn how the FHIR Breathing Identity and Entity Resolution Engine for Healthcare (better known as PID^TOO||) was created.
⏱ Date & Time: Thursday, October 19, 12:00 PM EDT | 6:00 PM CEST
👨🏫 Speakers:
Will it hurt anything if I disable the user that installed IRIS, within IRIS? Does this cause a problem with background processes running or with the restart? I know the _Ensemble user is used to start/stop/restart objects within IRIS, just didn't see anything in the documentation about the user that installed IRIS.
Thanks
Scott
Saw the other day an article with the usage of the %ZEN package when working with JSON and decided to write an article describing a more modern approach. At some recent point, there was a big switch from using %ZEN.Auxiliary.* to dedicated JSON classes. This allowed to work with JSONs more organically.
Thus, at this point there are basically 3 main classes to work with JSON:
%Library.DynamicObject - provides a simple and efficient way to encapsulate and work with standard JSON documents. Also, there is a possibility instead of writing the usual code for creating an instance of a class likeset obj = ##class(%Library.DynamicObject).%New()it is possible to use the following syntax
set obj = {}%Library.DynamicArray - provides a simple yet efficient way to encapsulate and work with standard JSON arrays. With arrays you can use the same approach as with objects, meaning that yu can either create an instance of the classset array = ##class(%DynamicArray).%New()or you can do it by using brackets []
set array = []%JSON.Adaptor is a means for mapping ObjectScript objects (registered, serial or persistent) to JSON text or dynamic entities.Hi There,
I am having issues trying to obtain a JDBC driver which is backwards compatible with java 6 for a solution which will call my IRIS instance, I have already logged a WRC ticket which is looking unlikely that there will be any development to create a driver for such legacy tech.
The Java 6 app is end of life, however won't be replaced until after my project goes live, hence why I ask the question.
I am also investigating the use of an adaptor to bridge between Java 6 and IRIS 2022.
Hi,
I am trying to use the %Net.HttpRequest Class, and the request has to pass through a proxy server that requires authentication.
I am usually able to do that by using the following code:
S httprequest.ProxyServer=proxyServer
S httprequest.ProxyPort=proxyPort
S httprequest.ProxyAuthorization="Basic xyzxyzxyz"
I have a problem accessing a site that is accessible only using SSL-
The combination of the proxy authentication code and the SSL code-
S httprequest.Https=1
S httprequest.SSLConfiguration = "XYZ"
S httprequest.ProxyHTTPS=1
Does not work- I get the following error:
"<WRITE>zSend+180^%Net.
Hi everyone,
My problem today is how to send an HTTP message to a web service deployed via Render and gunicorn.
Every time I try to contact the web service I get an error. Searching on the web, I've found this StackOverflow question that suggests the issue could be set off from a missing "/" character in the endpoint string.
I've tried in many ways, both including and excluding the final slash character, but I always get an error:
https://<renderProjectName>.onrender.com), the message is successfully sent but I get the error HTTP/1.I am trying to move us to Securing the Management Portal using Apache and the Web Gateway.
Our Development environment/namespace only has 1 server, but both Test and Production have failover/DR mirroring containing 3 servers for Test, and 3 additional servers for Production.
In Test and Production, the mirroring is setup using an Arbiter and the VIP address is controlled at the Hardware level.
Could you please help anyone how to import Python package in %SYSTEM package and to use python methods to write in object script class?
I used the following link to install the Python but I can't see the Python package in %SYSTEM package and my program throwing the Class Does not exist error?
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
Please help on this..
It's true! QuinielaML has incorporated the most important leagues in Europe (and Brazil) into its prediction service, so, dear members of the Developer Community, wherever you are from, you will be able to have the predictions of your favorite leagues at your disposal.
.png)
I didn't understand this error report. Can someone tell me what it means。

thanks
InterSystems announces its third 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.
Hi Community!
We have a couple more things to share with you about the workings of the Tags and Groups on the Developer Community.
First of all, if you're curious about where you can find the list of all Tags and Groups, it's in the Menu -> Posts -> Tags
.png)
I'm trying to run IRIS for Health Community Edition container on Mac (Apple chip) as follows
docker run --name iris -d --publish 1972:1972 --publish 52773:52773 --volume /<volume-path-on-host>:/<volume-name-in-container> --env ISC_DATA_DIRECTORY=/<volume-name-in-container>/<durable-directory> containers.intersystems.com/intersystems/irishealth-community-arm64:latest-cdbut it will error out to start
2023-10-17 09:15:29 10/17/23-13:15:29:045 (391) 0 [Utility.Event] Updating configuration files
2023-10-17 09:15:29 10/17/23-13:15:29:219 (391) 0 [Utility.Hello,
I have a problem attempting to store a base 64 encode stream into the OBX:5 field of a HL7 message, by using the StoreFieldStreamBase64 method.
I'm using a transformer to input the contents of a pdf within a stream container (Ens.StreamContainer). The output is a HL7 message (EnsLib.HL7.Message 2.5:ORU_R01).
The transformer is being used in a business process.
This is the code used in the transformer to encode the stream to base 64:
Try {
Set pdfStreamObj = source.StreamGet()
} Catch {
Quit
}
//Set PDF stream object into OBX:5
Set status = target.
Hey Community!
Welcome to the 8th edition of the InterSystems Ideas news bulletin! Here's what you can expect from it:
✓ New video describing all pages of the Ideas Portal
✓ Ideas implemented since the previous news bulletin
⏯Watch the video: Join the Hall of Fame
Pointers please for debugging a SOAP web-client.
We have several clients in different productions all accessing a web-service. We are trying to add another client in a new production, and its not working. The messages between the relevant Process and the SOAP web-client Operation are the same in the working and the non-working productions. But the web-service is reporting an XML parsing error to the non-working production. Here's the error as reported in the SOAP web-client Operation...

Is there any way to see the output of the web-client Operation - what Ensemble is actually sending
Taking advantage of the Quiniela ML application and as we indicated in the previous article, we are going to explain how we can perform a JWT authentication between our frontend developed in Angular and our backend developed in InterSystems IRIS.
I remind you of the architecture of our QuinielaML project:

Usually it is a cumbersome process in web applications to develop the administration and management of user access, but in our case InterSystems IRIS simplifies the process by providing us with all the infrastructure we need.
Hi Community,
Watch this video to learn how to combine FHIR, CDS Hooks, and the low-code Healthcare Rule Editor into an easy-to- use, powerful platform to help ensure information is delivered in the best possible way:
How can we create a random token within HealthConnect? any examples?
Hello Community,
I've created my FHIR patient profile and POST into FHIR endpoint in Intersystems FHIR Server.
http:localhost:52773/fhirr4/StructureDefinition
I use the profile url into my Patient resource without the meet the profile requirements.
http:localhost:52773/fhirr4/Paient
The resource is stored successfully in the FHIR Server instead of a FHIR exception.
Why the resource doesn't validate with the mentioned profile?
Is this profile validation is really a intersystems FHIR server job or the validation implementation is available now ?
It's time to announce the Winners for September! Please welcome our awesome Global Masters Heroes!
The storm of applause goes to these developers and their great contribution to DC in September:
🥇 @Sylvain Guilbaud
🥈 @Luis Angel Pérez Ramos
🥉 @Ashok Kumar
Learn more about the competition and our awesome winners below.
Hello community, I need to solve a complex but trivial issue.
Given:
Two tables "Comment" and "Post". Each one contains an "Author" field, which is essentially a user ID. In these tables, each user ID represents an author. The goal is to count all participants together and then group them by month, language, and other metrics.
The question is how to do this within the IRIS ecosystem. Is it even possible to take two tables, get distinct data from them and then combine into one cube?
When you use VS Code to edit source code, the settings model allows you to specify folder-specific values for some settings by using a settings.json file located in a .vscode sub-folder of the workspace root folder. A value set here takes precedence over one from your personal settings when you are working within that workspace root folder.
If you use an isfs-type workspace to operate directly in a namespace on a server, you first need to configure that server to support a special .vscode folder for each of its namespaces, present and future.
Hello Community,
I have couple of question about the DynamicSQL.
1. The %ObjectSelectMode is working perfectly in the DynamicSQL for the object property in direct query. However this is not supported for class query. Is there any way to resolve this / Get the object value for class query result.
2. What is the reason behind for a stored query prepared using %PrepareClassQuery() you must use the %Get("fieldname") method.
Class Samples.DB.NewClass1 Extends %Persistent
{
Property Address As NewClass3;
ClassMethod TestQuery()
{
set statement = ##class(%SQL.Statement).%New()
set statement.We are back to %SYS once again! Since we covered managing users and resources in the last two articles, we can finally move on to roles. As you may have guessed, there are a lot of methods of managing them that you have already seen in our previous writings. However, we can still encounter key differences in this particular class.
Before we begin, bear in mind that this is another class that should not be manipulated through direct SQL access. In newer versions of IRIS, you will find a NoSQL trigger that will prevent you from doing that anyway.