#Open Exchange

3 Followers · 679 Posts

InterSystems Data Platform Solutions Open Exchange is a gallery of software solutions, tools, and frameworks which were developed with InterSystems Data Platform (Caché, Ensemble, HealthShare, InterSystems IRIS, InterSystems IRIS for Health) or are intended to help in development, deployment and support the solutions built with InterSystems Data Platform.

You can use any of the published assets or you can publish your own tool, technology example or solution.

Discover Open Exchange.

Article Nikita Savchenko · Apr 1, 2016 6m read


Hello!

This article is a small overview of a tool that helps to understand classes and their structure inside the InterSystems products: from IRIS to Caché, Ensemble, HealthShare.

In short, it visualizes a class or an entire package, shows the relations between classes and provides all the possible information to developers and team leads without making them go to Studio and examine the code there.

If you are learning InterSystems products, reviewing projects a lot or just interested in something new in InterSystems Technology solutions — you are more than welcome to read the overview of ObjectScript Class Explorer!

38
4 6266
Article Lily Taub · Mar 19, 2019 9m read

Intro

Most server-client communication on the web is based on a request and response structure. The client sends a request to the server and the server responds to this request. The WebSocket protocol provides a two-way channel of communication between a server and client, allowing servers to send messages to clients without first receiving a request. For more information on the WebSocket protocol and its implementation in InterSystems IRIS, see the links below.

7
3 6179
Announcement Nikita Savchenko · Jan 19, 2017

Greetings, InterSystems community!

I am pleased to announce that the web terminal project, Caché WebTerminal version 4 gets its release! After long period of enhancing this web application from 2013, it came to the version 4, which features major stability and security improvements, intelligent autocomplete and syntax highlighting, convenient SQL mode and a lot of other useful features.

The goal of this article is to spread the knowledge about this project over the InterSystems community.

34
3 3812
Article Muhammad Waseem · Sep 21, 2023 7m read

image

Hi Community,
In this article, I will demonstrate below steps to create your own chatbot by using spaCy (spaCy is an open-source software library for advanced natural language processing, written in the programming languages Python and Cython):

  • Step1: Install required libraries

  • Step2: Create patterns and responses file

  • Step3: Train the Model

  • Step4: Create ChatBot Application based on the trained model

So Let us start.

1
1 3762
Question David.Satorres6134 · Jun 16, 2020

Hi!

As Atelier for Eclipse seems that will be discontinued, I decided to start moving my coding environment to Visual Studio Code. I kind of like it, and I'm getting used to it.

But I can't find the way to have several server connections as I do in Eclipse, and so creating projects based on that servers. Is there any way to do it?

 

Thanks a lot

14
0 3679
Article Evgeny Shvarov · Aug 29, 2019 4m read

Hi Developers!

Often when we develop some library, tool, package, whatever on InterSystems ObjectScript we have a question, how we deploy this package on the target machine?

Also, we often expect that some other libraries already installed, so our package depends on them, and often on some particular version of it.

When you code on javascript, python, etc the role of packages deployment with dependency management takes package manager.

So, I'm pleased to announce that InterSystems ObjectScript Package Manager available!

19
4 3670
Announcement Anastasia Dyubaylo · Oct 10, 2022

Hi Community!

We'd like to invite you to join our next contest to share your FHIR knowledge:

🏆 InterSystems IRIS for Health Contest: FHIR for Women's Health 🏆

Submit an application that uses InterSystems FHIR or InterSystems Healthcare Interoperability!

    Duration: November 14 - December 4, 2022

    Prizes: $13,500!

    >> Submit your application here <<

    7
    0 3502
    Announcement Anastasia Dyubaylo · Mar 16, 2021

    Hey Developers,

    You asked - we did it! We're glad to announce the next competition for InterSystems Developers! Please welcome: 

    🏆 InterSystems Programming Contest: Developer Tools 🏆

    Submit an application that helps to develop faster, contribute more qualitative code, helps in testing, deployment, support, or monitoring of your solution with InterSystems IRIS.

    Duration: March 29 - April 25, 2021

    Total prize: $8,500 


    16
    1 3338
    Article Nikita Savchenko · Feb 12, 2019 13m read

    ˮ This is one of my articles which was never published in English. Let's fix it!

    Hello! This article is about quite a practical way of developing InterSystems solutions without using the integrated tools like Studio or Atelier. All the code of the project can be stored in the form of "traditional" source code files, edited in your favorite development environment (for example, Visual Studio Code), indexed by any version control system and arbitrarily combined with many external tools for code analysis, preprocessing, packaging and so on.

    6
    6 3247
    Announcement Anastasia Dyubaylo · May 4, 2021

    Hey Community,

    Please join the next InterSystems online programming competition:

    🏆 InterSystems FHIR Accelerator Programming Contest 🏆

    Submit an application that uses InterSystems FHIR-as-a-service on AWS or helps to develop solutions using InterSystems IRIS FHIR Accelerator.

      Duration: May 10 - June 06, 2021

      Total prize: $8,750 

      👉  Landing page 👈


      15
      1 2903
      Article Evgeny Shvarov · Feb 24, 2020 9m read

      Hi Developers!

      Many of you publish your InterSystems ObjectScript libraries on Open Exchange and Github.

      But what do you do to ease the usage and collaboration to your project for developers?

      In this article, I want to introduce the way how to introduce an easy way to launch and contribute to any ObjectScript project just by copying a standard set of files to your repository.

      Let's go!

      21
      6 2517
      Article Henrique Dias · Aug 20, 2019 2m read

      Hi, everyone!


      I want to share a personal project that started with a simple request at work: 

      Is it's possible to know how many Caché licenses we are using? 

      Reading other articles here in the community, I found this excellent article by  David Loveluck 


      APM - Using the Caché History Monitor
      https://community.intersystems.com/post/apm-using-cach%C3%A9-history-monitor

      So, using David's article, I started using Caché History Monitor and to show all that information. 

      When facing the question: Which cool tech should I use?

      24
      8 2414
      Announcement Anastasia Dyubaylo · Jan 13, 2023

      Hey Developers,

      We'd like to invite you to join our next contest dedicated to creating useful tools to make your fellow developers' lives easier

      🏆 InterSystems Developer Tools Contest 🏆

      Submit an application that helps to develop faster, contributes more qualitative code, and helps in testing, deployment, support, or monitoring of your solution with InterSystems IRIS.

      Duration: January 23 - February 12, 2023

      Prize pool: $13,500

       

      14
      2 2401
      Article José Pereira · Apr 5, 2022 4m read

      Motivation

      This project was thought of when I was thinking of how to let Python code deal naturally with the scalable storage and efficient retrieving mechanism given by IRIS globals, through Embedded Python.

      My initial idea was to create a kind of Python dictionary implementation using globals, but soon I realized that I should deal with object abstraction first.

      So, I started creating some Python classes that could wrap Python objects, storing and retrieving their data in globals, i.e., serializing and deserializing Python objects in IRIS globals.

      How does it work?

      1
      1 2379
      Question Thomas Schroyen · Mar 7, 2019

      Hello Gentlemen,

       

      My Business process connector receive a Oru_01 hl7 message with an ED segment inside (Base64 pdf). How is it possible to extract it and create a pdf file within?
      Here is the sample of function I have. I know it doesn't work but if you could help me, it would be perfect. Here is my function, the goal would be it create the file where I want and return me the link of the file.

      Method getPdfFromED(req As EnsLib.HL7.Message,segment As %String) As %Status
      { 
          do req.GetFieldStreamBase64(.base64, segment)
          set stream1=##class(%Stream.FileCharacter).
      5
      0 2364
      Announcement Dmitry Maslennikov · Mar 4, 2019

      Hope most of you already familiar with project CachéQuality from @Daniel.Tamajon. For those who don’t know about it, it is a static syntax analyzer for your code written for InterSystems products. It may help you to find and solve many different types of issues in your code, and even possible bugs before clients will find it in production. So, with help of CachéQuality you will be able to deliver a better product. You can find the complete list of rules used to check ObjectScript code here.

      It was already available in Studio. And now it is also available in VSCode.

      41
      1 2313
      Announcement Anastasia Dyubaylo · Apr 6, 2020

      Hi Developers!

      Want to participate again in the competition of creating open-source solutions using InterSystems IRIS Data Platform? 

      Then we're pleased to announce the second InterSystems IRIS Online Programming Contest!

      And the topic for this contest is InterSystems IRIS with REST API.

      The contest will again last three weeks: April 13-May 3, 2020

      Also, please join the InterSystems Contests Discord Channel to chat about contest and technology.

       

      37
      2 2241
      Announcement Anastasia Dyubaylo · May 30, 2023

      Hi Developers,

      The annual competition for InterSystems IRIS developers is fast approaching! 

      We're super excited to invite you all to join the Grand Prix contest for building open-source solutions using InterSystems IRIS data platform! 

      🏆 InterSystems Grand Prix Contest 2023 🏆

      Duration: June 12th - July 9th, 2023

      Prize pool: $26,000


      18
      2 2184