The InterSystems documentation new look is pretty awesome. The integrated pervious release documentation are single page is really useful.
Dark mode and collapse the side bar option is cool!
.png)
The InterSystems documentation new look is pretty awesome. The integrated pervious release documentation are single page is really useful.
Dark mode and collapse the side bar option is cool!
.png)
Howdy all,
I'm very new to intersystems, therefore I'm seeing some suggestions here.
My query - I'd like to setup monitoring for IRIS local database size monitoring using SolarWinds. Preferably, using REST API connections, could someone help with this. Thank you in advance.
Hi. In a project I'm involved in I need to connect to a MongoDB database, read some data and store it in some internal table.
I'm wondering what's the best way to connect to MongoDB, as it seams to me there's no native Intersystems adapter.
Did anyone have handled such a scenario?
Thank you. Best regards
Davide Cecchetto
Hi Community,
Play the new video on InterSystems Developers YouTube:
⏯ FHIR to IntegratedML - Can You Get There From Here @ Global Summit 2023
At the Global Summit (June 9–12), sign up to meet with one of our talented technical trainers!
⭐This week the spotlight is on Sam Shafer, Senior Technical Trainer.
🔎 Sam's specialties include ObjectScript, System Admin, Unified Care Record, and CCR.
In a 45-minutepersonal training session, you can refresh your memory on previous classroom training, discuss a technical concept, or start learning about InterSystems technologies.
📧 Email GSTechExchange@intersystems.com or visit the Tech Exchange concierge desk at the Summit.
It's time to announce the Winners for April! Please welcome our awesome Global Masters Heroes!
The storm of applause goes to these developers and their great contribution to DC in April:
🥇@David Hockenbroch, senior analyst, WoodWare Systems, United States
🥈@Sylvain Guilbaud, Sales Engineer, InterSystems, France
🥉@Robert Cemper, ex Senior Sales Engineer from InterSystems, Austria
Learn more about the competition and our awesome winners below.
Hi,
We are using IRIS Health lockeddown images for building the product. In lockeddown images the default "superuser" or "_SYSTEM" users are present.
In this case how to access and authenticate the IRIS Management portal?
thanks and regards,
Jagadish Bandaru
Hi Guys
I'm using the below to populate a tree to just show the root with a folder icon but whenever I click on a folder it loops back to the original folder, how can I disable the root folder from expanding to the next, I only want to show the main opened root folder and not to go any further?
<dynaTree OnGetTreeInfo="GetTreeInfo" showLabel="true" id="editLocTree" onclick="zenPage.setData(zenThis.value)" showLines="false"/>
Method GetTreeInfo(pRoot As %String, Output pTree, ByRef pParms) As %Status
{
Set MyId=..GetId,pos=1
&Sql(Select Name,ID into :name,:id from MSDS_COM.Loc where Parent=:MyId)
We have a custom business service that is triggered by a scheduled task. The service queries a table, iterates over the result set and sends a message on to a business process for each result. Happy path functionality is all fine.
However, when there is an error detected in the business service code, neither throwing an exception nor returning an error %Status behaves as we'd expect.
Our error handling scheme, which is working for the other business processes and operations, is to throw an exception on error.
Hi,
I have a spring-boot Java application which has Quartz Scheduler (spring-boot-quartz-starter) dependency, and uses IRIS DB.
There is a problem with making Quartz Scheduler work with IRIS since there is a blob field expected in two tables, but IRIS is using longvarbinary type.
Can you provide me with clues on how to resolve this?
I am using org.quartz.impl.jdbcjobstore.StdJDBCDelegate driverDelegateClass.
This is the error:
MisfireHandler: Error handling misfires: Couldn't retrieve trigger: invalid stream header: 41434544
org.quartz.JobPersistenceException: Couldn't retrieve trigger: invalid
Hello Community,
My Intersystems Caché Version: 1.2014 (Can't update now.)
I have the following issue:
I have for example an articlenumber with 15049950, which is numeric. But sometimes it can also be an alphanumeric string like PK15049950.
How can i set numbers always to string in Json Stream with quotes like "15049950".
Code Example:
set object = ##class(%ZEN.proxyObject).%New()
set articlenumber = "15049950"
set object.articlenumber = articlenumber
set x = ##class(%ZEN.Auxiliary.jsonArrayProvider).%WriteJSONStreamFromObject(.json,object)
Will output:
{
"articlenumber": 15049950
}
but I want always:
{
"ar
here is the command I run
docker pull containers.intersystems.com/intersystems/iris-community:2024.1
docker run --name iris -d --publish 1972:1972 --publish 52773:52773 91b900c4baf5
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
9b92e6dabb2f 91b900c4baf5 "/tini -- /iris-main" 44 minutes ago Up 44 minutes (unhealthy)
Good Afternoon,
I'm working on a API documentation that wil be interactive, it's based on a BS class on Ensemble.
The objective on making the documentation is simplify the undestanding of the operation for those who are not acquainted with the Ensemble environment.
My problem is, when using Postman to test a operation the indentation appears as such:
{
"authKey": "<string>",
"authKeyType": "<string>",
"birthDate": "<string>",
"name": "<string>",
"nameMother": "<string>",
"zipCode": "<string>",
"phone": "<string>",
"token": "<string>",
"senhaOrigem": "<string>",
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 working on a Zen page that has a table pane with the maxRows set to a default value. My customer is coming back with the following request of making that value bigger & begs the question whether the new value can be configurable. I looked @ the documentation, and forgive me if I missed, and I couldn't find anywhere that it can. Am I wrong? Thanks.
Hi folks!
Researching FHIR bundle transactions.
The idea is that you can post a bundle to a FHIR server with a set of resources. And you can send it as a transaction, so only all the resources will be published or neither.
E.g. I send a bundle of two resources: patient and its observation.
The observation resource should reference an existing patient. But it probably doesn't exist yet on the server and goes within the same bundle.
For this purpose there is a way to have a temporary id in the bundle, to let resources reference ids.
Is there a way to use the %JSON.Adaptor to project readable JSON when a property is defined as a %Integer but with a DISPLAYLIST ?
Class User.CExampleJSON Extends (%RegisteredObject, %JSON.Adaptor, %XML.Adaptor)
{
Property something As%Integer(DISPLAYLIST = ",OK,Error,Warning", VALUELIST = ",0,1,2") [ InitialExpression = 0 ];ClassMethod RunMe()
{
set obj = ..%New()
set obj.something = 2do obj.%JSONExportToString(.string)
write"JSON : " _ string,!!!
write"Content : " _ ..somethingLogicalToDisplay(obj.something),!
}
}
Which gave on the
.png)
Hi Community,
In this article, I will introduce my application iris-VectorLab along with step by step guide to performing vector operations.
IRIS-VectorLab is a web application that demonstrates the functionality of Vector Search with the help of embedded python. It leverages the functionality of the Python framework SentenceTransformers for state-of-the-art sentence embeddings.
HealthShare Unified Care Record Fundamentals – InPerson * Cambridge, MA June 3-7, 2024
* Please review the important prerequisite requirements for this class prior to registering.
Hi
I'm new to DTL. I'm playing with Code action and run into some syntax error with a simple assignment statement. Please see the screenshot below.
Can someone direct me to some sample code in a Code action for processing HL-7 messages please? Thanks
Hi all, I need an advice (or a guide):
In an EC2 environment running RHEL, which memory management model makes sense to use. Standard Huge Pages or Transparent Huge Pages?
Hello Community,
I'm trying to load a file by execute this LOAD DATA SQL command in both studio and SQL-SMP I got the below error.
///sample executed queriesClassMethod ExecutedQueries()
{
/// executed queries - 1
LOAD DATA FROM FILE 'C:\\FHIRFILE\mycont.csv' COLUMNS ( C_COUNTRY VARCHAR ( 40 ) , C_CODE VARCHAR ( 20 ) ) INTO SAMPLE . COUNTRIES ( COUNTRY , CODE ) VALUES ( C_COUNTRY , C_CODE )
/// executed queries - 2
LOAD DATA FROM FILE 'C:\FHIRFILE\mycont.csv' INTO SAMPLE . COUNTRIES ( COUNTRY , CODE )
}sample data.png)
Hello everyone,
After upgrade to InterSystems ObjectScriptv2.12.3 extension an annoying "bulb" occured in the beggining of code line. If point upon it, there are some actions being offered. In my case, an action "Wrap in try/catch" is always among them, even if the code line is already within try/catch block. Another action which appears sometimes is "Extract to method". If accept, new method is inserted into the class with only one line body inside. IMHO, not too clever "AI solution" as well.
The question is: how to disable this "bulb"?
As most of you have heard already, InterSystems announced the deprecation of Studio with the release of IRIS 2023.2. A detailed deprecation plan was revealed in November, and we are now hitting the first milestone in that plan. Starting with 2024.2 preview kits, Windows kits will no longer contain Studio. This means that new installations using this kit will not install Studio, and upgrading an existing instance to version 2024.2 (or later) will remove Studio from the instance’s bin directory.
Developers who wish to keep using Studio simply need to download the 2024.1 Studio independent
Hi, guys,
A client is trying to launch a irishealth community docker image on centos 7.6 but failed
.png)
How to fix the problem? Thanks.
Hey Community,
We have more exciting news! The new InterSystems online programming contest dedicated to Generative AI, Vector Search and Machine Learning is starting very soon!
🏆 InterSystems Vector Search, GenAI and ML Contest 🏆
Duration: April 22 - May 19, 2024
Prize pool: $14,000
.jpg)
Hi Community,
We're pleased to invite you to the upcoming webinar in Hebrew:
📅 Date & time: May 21st, 3:30 PM IDT
Hi Developers,
We invite you to write a review on the InterSystems IRIS on Capterra. The first 100 reviewers will get a $20 USD gift card from Capterra and $25 VISA card from InterSystems for the published review!
See the rules below.
Principle: After dividing the article uploaded by the user into sentences using Python, the embedded value is obtained and stored in the Iris database. Then, the similarity between sentences is compared through Iris vector search, and finally displayed on the front-end page.
The installation steps can be viewed in the readme file.
The traditional use of an IRIS production is for an inbound adapter to receive input from an external source, send that input to an IRIS service, then have that service send that input through the production.
.png)
With a custom inbound adapter though, we can make an IRIS production do more. We can use an IRIS production to process data from our own database without any external trigger.
By using an IRIS production in this way your data processing tasks now get to leverage all the built in features of an IRIS production, including: