I would like to watch a webseminar about debug objectscript techniques into vscode to rest api, productions and embedded python, specially using docker instances and remote servers.
The InterSystems Server Manager extension for Visual Studio Code lets you define connections to your servers, list their namespaces and edit or view code there. You can also launch Portal for a server.
Server Manager 3.0 improves security by becoming a VS Code Authentication Provider. It is my entry for the November 2021 InterSystems Security Contest. Click here to visit the contest page where you may decide to vote for this entry. Please ignore the clickable "Contestant" label on this article header above, as it relates to a different contest for new DC articles. If you want to support me in that contest, simply "like" this post.
Hi, I have VSCode on my Windows 10 notebook with intersystems-community.objectscript-pack installed. I'm successfully connected to remote IRIS (2021.1). I can export classes, change them, save and import back to IRIS.
But every time VSCode starts, the message "Request initialize failed with message: Dynamic Linking Error: Win32 error 126" is displayed and InterSystems Language Server does not start.
Has anyone solved this problem yet?
Developing the project zpm "install isc-apptools-lockdown" implemented the ability to set the security level not only to lockdown, but also to minimum and normal.
Increasing security settings
You can replace the shared password if the password of the predefined system users has been compromised
USER>do ##class(appmsw.security.lockdown).ChangePassword("NewPass231",##class(appmsw.security.lockdown).GetPreparedUsers())
Apply Security settings to "LockDown"
USER>do ##class(appmsw.security.lockdown).SetSecurityLevel("lockdown","NewPassword123")
or equivalent
Good evening Intersystems Community,
I want to participate in the Advent of Code 2020 and followed the installation instructions in "The Advent of Code 2020 contest ObjectScript template" (https://openexchange.intersystems.com/package/aoc2020-objectscript-temp…).
Unforunately I get "Error: Invalid Community Edition license, may have exceeded core limit." at the step "docker-compose build".
I think I already found a way to tell docker to use less cores (docker run --cpus 2), but I can't figure out how to integrate that into "docker-compose build".
I would really appreciate any advice, thanks!
Security wanted!
Welcome to the next InterSystems online programming competition:
🏆 InterSystems Security Contest 🏆
Duration: November 15 - December 05, 2021
Prizes: $9,450 in prizes!
.png)

I have a stored procedure (MSsql) which has one input and one output parameter.
and a Business Operation calling the SP
The following code executes the stored procedure successfully , but does not return the output.
what needs to be fixed?
set outparm = ""
set pResponse = ##class(Ens.StringResponse).%New()
SET SQLQuery2 = "{call s_sproc (?,?)}"
SET tSC = ..Adapter.ExecuteProcedure(,,SQLQuery2,"io*",pRequest.StringValue,outparm )
set pResponse.StringValue = outparm
Thanks
I am a newb and I can't seem to find the HL7 Service name down below
Hi all,
Just wondering if there's a quick way to get the DocType, without knowing it in advance, from a message body by building a string from the VersionID, MessageType, and TriggerEvent fields? (Similar to how it might be done dynamically in Rhapsody)
Can this then be used to set the DocType for a source message?
If this is not the best practice what is a suitable alternative approach?
Thanks for your help,
Ben
FHIR Terminology Service specification describes a set of operations on CodeSystem, ValueSet and ConceptMap resources. Among those operations, the following four operations appear to be the most widely adopted ones:
| CodeSystem | ValueSet |
|---|---|
| $lookup $validate-code | $expand $validate-code |
Developing a partial implementation of the specification has been an effective way to explore the new FHIR framework introduced in IRIS for Health 2020.1. The implementation includes four operations listed above, and supports read and search interactions for CodeSystem and ValueSet resources.
It's important to note that the implementation uses plain ObjectScript persistent classes as source terminology tables.
Hi All,
I am working in Heath Share Heath Connect Integration.
I have a requirement to change SOAP call to REST call in integration. For SOAP call already payload is ready in XML string. and Working fine.
Now I need to make REST API call instead of existing SOAP call.
I have created REST Business Operation and ready to Call it from Business Process.
Here I should not change any Transformation in Business Process , only change in Operation invocation
Only change is existing SOAP Operation expecting XML String , new REST Operation is expecting JSON.
Hey Community,
We invite you to join the next French stream on InterSystems Technologies #7, hosted by @Guillaume Rongier!
Date & Time: December 2nd, 12:00 Paris time.
👉 Direct link to join: https://bit.ly/30UV6xp

On the agenda this month: 
Hi Guys,
is there a Runtime EXE for Excel or ms office, I've a report that would like to open in excel?
Thanks
Does InterSystems IRIS have any library or class that support IBM FASP protocal? like SFTP, IRIS has %Net.SSH.SFTP that for SFTP file transfer.
Hey Developers,
Please welcome the first session from the InterSystems Virtual Summit 2021:
Hi all
I'm new to ObjectScript and I've been experimenting the correlate method of %XML.Reader to convert an XML file I've loaded into its corresponding class. But, I have found that I am not getting all the child items of an element in a List contained within the converted class, only the last item.
The XML file content is as follows:
<Results> <PersonIDs> <PersonID>1000000</PersonID> <PersonID>1000001</PersonID> <PersonID>1000005</PersonID> </PersonIDs> </Results>
Activity Volume And Duration are often inconsistent with the actual message amount, and the monitor can only monitor one namespace. Can this function provide a more explicit description
When using an undimensioned array is there a way to write the array to a file? Something like this
DIM C()
C('TEST') = 2
C('WEST') = 5
C('BEST') = 1
WRITE C on myfile, 1A vendor is sending an HL7 message where they are hitting the enter key within the field. I am looking for a way to concatenate the lines. I want to know if there id a way to search the field for a carriage return and piece together the field. This is an example of what they are sending:
NTE|1||Fake Interpretation A Overall Summary. Patient presents with abnormal SR and RHR. Fake Interpretation B 80/120 Fake Interpretation C - HR 55 BPM|
Hi,
What's the best way to get list of members attached to a Mirror?
In my scenario, in a Mirror set there are 5 members. 2 Failover, 2 DR Async and 1 R/W reporting.
On Primary, in the code I want to identify Backup member and then do my stuff.
And on Backup, in the code I want to identify DR Async and then do my stuff.
Basically the idea is to push file through code from Primary > Backup and then later files will be pushed from Backup > DR Async.
Regards
Kamal Suri
Hi,
I recently needed to setup an SSL/TLS configuration in IRIS that supported mutual authentication (where the server IRIS is establish a connection to is verified, and, where IRIS is in turn verified by the remote host). After a bit of research and getting it done, I thought it worthwhile to just go over the process I went through in order to potential help others, and save you some time .
I'm running reviews on Open Exchange since April 2021.
I have seen excellent packages, good ones, and some that made me feel just lost.
And I started to recognize contributors also by their style and organization of the submitted packages.
Hi folks!
Is there any templating engine for ObjectScript similar to Jinja?
Or is there any way to use csp's built-in tools to do this?
Ideally, I want to input the template and data into the function and get the ready to use html in the output.
The DeepSee Shell Best Practices Series - Run MDX queries in the DeepSee Shell
Introduction to DeepSee Shell
There is a basic introduction video about DeepSee shell on InterSystems video portal.
Key points in this video:
•Invoke DS shell command, generate MDX in Analyzer, copy in shell;
•Cube command, Select statement and Create statement
•Clauses: With, solve_order, Format_string
Why do you need DeepSee shell?
Hi,
InterSystems learning section is down since yesterday
.png)
When it will be up and running OR is there any alternate available?
Thanks
Hello, are there any alternative choices for creating forms with a different tool and then integrating them with Intersystems? I want to use Angular to construct forms and integrate the code with Intersystems. Is there anyone out there who might have an idea?
Pouring The Coffee: Creating and scheduling a task
Don't you wish a fresh, hot cup of coffee could be waiting for you right when you get into the office? Let's automate that!
Cache and IRIS come with a built-in Task Manager, which should have a familiar feel to those used to using the Windows task scheduler or using cron on Linux. Your user account will need access to the %Admin_Task resource to use it, and you can access it in the management portal under System Operation -> Task Manager. When first installed, there are roughly 20 types of task that you can schedule.
The Learning platform is not working today for me.
I'm having the following error:
An error occurred while processing your request.
Reference #30.ed7b0660.1637582264.40212533
Running HealthConnect 2021.1 on RedHat Linux 8.4.
I've configured IRIS/HealthConnect with an external web server to support TLS encryption. It's installed on the same server as IRIS, but is a different instance and version of Apache httpd. That all works as expected.
I would also like to keep the "private" web server available, but I'm having an issue with using the fully-qualified domain name in the URL vs. just the hostname itself.
If I use http://servername:52773/csp/sys/UtilHome.csp to log on, all is well.
InterSystems Developers,
We adore you! And so excited to share with you all that...
We've now reached an incredible milestone of 10,000 registered members on Developer Community! 🎊
At InterSystems, we believe in the power of community. So we really appreciate all of your contributions throughout these 6 years and look forward to the road ahead!

