Hi Team,
"Unable to logon to Server Ensemble" also I have don't have access to Ensemble studio and Management portal also, on Ensemble Server (2015.2.0.664.1) Production Server.
PFA error screenshot for your reference.
Hi Team,
"Unable to logon to Server Ensemble" also I have don't have access to Ensemble studio and Management portal also, on Ensemble Server (2015.2.0.664.1) Production Server.
PFA error screenshot for your reference.
2022.1 is an extended maintenance release, which means that maintenance builds will be available for two years, followed by an additional two years of security-specific builds.
InterSystems IRIS Data Platform 2022.1 expands support to include the following new & updated operating systems for production workloads:
Hello! I need help reading a file and putting the contents into variables.
File path would be, c:\temp\zipcitystate.csv or txt
Data looks like this
00501,Holtsville,NY
00544,Holtsville,NY
00601,Adjuntas,PR
00602,Aguada,PR
I need to add the first area to variable ZIP, Second to CITY and third to STATE. they are separated by a comma.
Any help would be appreciated
Hi developers!
Here is the score of technical bonuses for participants' applications in the InterSystems Grand Prix 2022 programming Contest!
Hey Developers,
New video is already on InterSystems Developers YouTube channel:
⏯ InterSystems HealthShare Analytics Solution: Create & Deliver Real-Time Insight at Scale
Hey Developers,
Let the voting week begin! It's time to cast your votes for the best applications in the Grand Prix Programming Contest!
🔥 You decide: VOTE HERE 🔥
In the first article about IRIS Megazord, Henrique explains what drove us to create such an application. It basic is a composition of these previous project which we did:
But we also started the development of a new feature, called Flow Editor. In this article we are going to know more about it.
The aim of this feature is to test a new way to create IRIS Interoperability productions, as Henrique explained in the previous article.
Very recently Docker showed a very new feature added to their Docker Desktop tool. It was a good way to start using Docker on macOS and Windows, and they also released the same tool for Linux as well. And new feature Extensions add an ability to extend this GUI application with some extra abilities from extensions.
.png)
Hi Community,
This article will demonstrate how to create Patient and Patient Observation Resources by using iris-fhir-client application.
I recommend to read my first article about this app and watch Youtube Video before continue
so let's start
Hey Community,
Here is a digest of the Developer Community videos on InterSystems Developers YouTube Channel in May 2022:
Hi all
I have a Zen page which displays the contents of a table. One of the columns is a file path to a file on a local disk.
Is it possible, on a Zen page, to allow that file that described by the file path to be downloaded when a hyperlink is clicked on?
Cheers
It is very interesting to compare different BI technologies. It is curious to me what the differences are in functionality, development tools, speed and usability.
For this application, I chose a dataset with water conditions in various European countries. This is an open source dataset containing observational data from 1991 to 2017.
The team and I decided to make a model based on this BI dataset using IRIS BI, Tableau, PowerBI and InterSystems Reports (powered by Logi Reports).
For the frontend, we made a web interface in PythonFlask via Embedded Python.
This article will discuss FHIR Questionnaire and QuestionnaireResponse from the creation of the form to the upload on the server and how to fill them.
The ideal candidate will be responsible for conceptualizing and executing clear, quality code to develop the best software. You will test your code, identify errors, and iterate to ensure quality code. You will also support our customers and partners by troubleshooting any of their software issues.
Responsibilities
Application at yann.decambourg@synodis.fr - www.synodis.
Good morning,
We would appreciate if you could read us and if you have the opportunity, please respond to us.
The current situation is as follows:
We have 2 environments PREproduction and INTegration :
Ensemble version in PREproduction:
Cache for UNIX (Red Hat Enterprise Linux for x86-64) 2018.1.6 (Build 717U) Thu Feb 24 2022 13:27:54 EST
Version of the tool to convert XML to ER7 and vice versa, the ITB, in PRE (we get it in the ITB.info.cls file):
Parameter VERSION = 2.1;
Ensemble version on INTegration:
IRIS for UNIX (Red Hat Enterprise Linux for x86-64) 2020.1.
Thanks to @Yuri Marx we have seen a very nice example for DB migration from Postgres to IRIS.
My personal problem is the use of DBeaver as a migration tool.
Especially as one of the strengths of IRIS ( and also Caché) before is the availability of the
SQLgateways that allow access to any external Db as long as for them an access usinig
JDBC or ODBC is available. So I extended the package to demonstrate this.
Hi Guys,
I have a service that picks up jobs and process them, is there a way that I can cap the number of attempts to pickup a certain job eg. 10 times if no response then just discard ?
Thanks
M:N Relationship is a recurring object of my interest for a long time.
So the subject turns up with me repeatedly.
For this article, I found a nice example with TWO separate M:N relationships. Some M:N².
It is not pure fiction but taken from a closer view of OEX Contests that we run on a regular base.
I would like to capture any NACK's that is sent back to the Operation. The Operation is already setup to "Save Replies/IndexNotOK's", but I would like to see if we can query Cache and pull those NACK's into an extract.
Is this possible?
Thanks
Scott
Hi Community,
This post is a introduction of my open exchange iris-fhir-client application.
iris-fhir-client can connect to any open FHIR Server by using embedded python with the help of fhirpy Library.
Get Resource information by terminal and by using CSP web application.
Sr. Applications Development Analyst - https://osu.wd1.myworkdayjobs.com/OSUCareers/job/Medical-Center-Campus/Sr-Applications-Development-Analyst_R20670-2
Health System Shared Services | Business Systems
Hi Guys,
I had a task that was running ok but then crashed and now getting this error <COMMAND>zRunTask+72^%SYS.TaskSuper.1?
Thanks
Hey Community,
Exciting results from a massive workload to test InterSystems API. We'll describe how we're trying to push the boundaries of the current technology in the public cloud:
I am creating "models" that contain rows in several class tables called Model, Path, Node.
So, model 19 includes 1 row in the Model table, 11 rows in the Path table, and 10 rows in the Node table.
I'd like to write some utilities to "move" model 19 from one instance to another.
I found some old (maybe deprecated?) functionality, the %SYNC.Transporter, which seems to work. I can write a SQL query to select the rows of interest, and export those record to a ,gof file. I can create 3 of them (one file per class), and then on the target instance, I can import from the .
Hi Guys,
So I've been following this guide in using a %Library.ResultSet with a ClassName / QueryName as described in the first example.
https://docs.intersystems.com/irislatest/csp/documatic/%25CSP.Documatic…
The code I've got so far doesn't work and is as follows:
set rs=##class(%ResultSet).%New()
set rs.ClassName="GMECC.DocmanConnect.Tables.vwNewGPs"
set rs.QueryName="GetRows"
set sc=rs.Execute("a") If $$$ISERR(sc) Do DisplayError^%apiOBJ(sc) Quit
while rs.%Next() { do rs.%Print() } And the referenced class is
Class GMECC.DocmanConnect.Maternal Risk can be measured from some parameters well known to the medical community. In this way, in order to help the medical community and computerized systems, especially AI, the scientist Yasir Hussein Shakir published a very useful dataset for training ML algorithms in the detection/prediction of Maternal Risk. This publication can be found on the largest and best known data repository for ML, Kaggle at https://www.kaggle.com/code/yasserhessein/classification-maternal-healt….
We’ll be at the Global Summit in June! If you’re planning on attending please come and say hi to us in the Partner Pavilion. Just a warning, our brand might look a little different from what you’re used to 👀
We’re looking forward to catching up with everyone and hearing what you’ve been up to since 2019. If you would like to book a meeting or join our User Group Session, email laurelj@georgejames.com. We hope to see you in Seattle!
Hi guys,
We are connecting to a 3rd party SOAP web service. The wsdl looks like below
.png)
Please notice that the portType was defined as /cvpService.
Then when we are trying to use SOAP Wizard to generate a client for the service, we will encounter the following error which prevented the generation
.png)
It seems that '/cvpService' can not be used as a valid class name (or even method name) thus the generation failed.
Thus I have 2 questions about the failure
1.
Hi,
Has anyone experienced any issues when using Cloudflare in front of a csp application?
I keep getting 502 errors when Cloudflare is active?
Strangely, the SMP works but only if I remove the trailing question mark from the url but it doesn't resolve the issue when I try any other csp application URL's.
Hey Developers! Here is a digest of new solutions and applications submitted to the InterSystems Open Exchange in May 2022.