Question Flávio Lúcio Naves Júnior · May 6, 2021

Hello everyone,

 

I have a doubt, its possible to use interface like C# using COS? 
Remember, interface is different from Abstract Class, because a abstract class can implement code in the method, so I don't want this, I want only define the methods from Class, not allowing implement code.

Description of C# interface: An interface defines a contract. Any class or struct that implements that contract must provide an implementation of the members defined in the interface. Beginning with C# 8.0, an interface may define a default implementation for members.

5
0 832
Announcement Anastasia Dyubaylo · Nov 17, 2022

Hi Developers,

We're super excited to share with you the new awesome functionality of the Online Analytics Dashboard for every Community member 🔥

From now on, you can see your own detailed statistics for the current week, month, and all time, including:

  • number of views, likes, comments, followers
  • timeline graphics of views, likes, actions with your posts, comments
  • a table containing info about views, comments, and likes for your every post

    1
    0 561
    Article Andrej Braguca · Oct 28, 2022 5m read

    VR ICU® is a participant of InterSystems FHIR startup incubator — Caelestinus. The article will tell you about our VR solution for HealthCare build with InterSystems FHIR Server

    We are a technology startup Virtual Lab that develops solutions using advanced VR/AR technologies. VR ICU® is a training platform for medical staff in ICU, which was created during the Covid era for the needs of hospitals.

    Benefits of cooperation with InterSystems

    Our VR ICU® solution responds to practice needs and is developed in collaboration with hospitals.

    1
    0 744
    Question Smythe Smythee · Nov 16, 2022

    Hi,

    I

    want to get the values from a serial property because my code depends upon the class serial class.

    For example

    Serial class

    Class Data.Serial Extends %SerialObject

    {

    Property FirstName as %String;

    Property LastName as %String;

    }

    Persistent class

    Class Data.Persistent Extends %Persistent

    {

    Property MPID as %Integer;

    Property Name as Name.Serial;

    }

    Now i need save MPID and Name(Serial class property into SQL Table ) so i am trying the below class

    Class Data.TestUtil Extends  %RegisteredObject

    {

    Method Savedata(MPID,FirstName,LastName)

    {

    Set tSC=0

    Set Obj=##Class(Data.Persistent).%New()

    Set Obj.MPID=MPID

    Set Obj.

    2
    0 635
    Question Andy Khemraj · Nov 15, 2022

    I copied an existing message router and when I make changes to the rules in the copy it changes the values in the original message rounter.

    How can I update my copy to have unqie values in my rules.

    3
    0 411
    Announcement Larry Finlayson · Nov 16, 2022

    HealthShare Unified Care Record Fundamentals  December 12-16, 2022   9:00am-5:00pm US-Eastern Time (EST)

    • This 5-day course teaches HealthShare Unified Care Record users and integrators the HealthShare Unified Care Record architecture and administration tasks.
    • The course also includes how to install HealthShare Unified Care Record.
    • This course is intended for HealthShare Unified Care Record developers, integrators, administrators and managers.
    • This course is applicable for users of HealthShare Unified Care Record.
    • Self Register Here
    0
    0 284
    Announcement Larry Finlayson · Nov 16, 2022

    Managing InterSystems Servers  December 5-9, 2022   9:00am-5:00pm US-Eastern Time (EST)

    • This five-day course teaches system and database administrators how to install, configure and secure InterSystems server software, configure for high availability and disaster recovery, and monitor the system. Students also learn troubleshooting techniques.
    • This course is applicable to both InterSystems IRIS and Caché. Although the course is mostly platform independent, students can complete the exercises using either Windows or Ubuntu.
    • Self Register Here
    0
    0 316
    Discussion Yone Moreno · Nov 16, 2022

    Hello,

    Thank you for reading this question, and thank you for your time and replies.

    I was wondering which ways, tools, mechanisms, or vias would you recommend to teach to kids, teens, adults, being your sons / daughters or not; your passion or likelihood for programming and computers?

    I know there are some programming free games like the following ones:

    https://wintrmut3.itch.io/maelstromexe

    https://niandra.itch.io/just-add-eggs

    https://jaywee1115.itch.io/code-ed

    https://ratking.itch.io/chipcode

    Even more, there are some sites which propose you small challenges:

    https://www.codewars.

    5
    0 341
    Question Michael Davidovich · Nov 15, 2022

    I am sending an HL7 message from a BPL transform operation to a business operation that uses EnsLib.HL7.Operation.FileOperation.  

    The context is that our application queues up outbound data that the business service polls every minute.  The objects in the queue are sent to the business process to transform and then to the operation to send outbound.  My goal is to have the business operation inform the business process (by a response) that the message was sent and what the message identifier is.

    3
    0 404
    Question Michael Davidovich · Nov 14, 2022
    • I have created a business service that uses an adaptor that I wrote by extending Ens.InboundAdapter (i.e. the ADAPTOR parameter is set to my custom adaptor  ).  
    • The OnTask() method of my adaptor polls our IRIS database to determine which records are ready to be sent out of our system to an external target system.
    • If the record is ready the OnTask() method creates an instance of the Business Service and then calls the OnProcess() method sending in the record as the input.
    • The Business Service is also a custom design that simple calls the business process using an async request.
    2
    0 524
    Announcement Anastasia Dyubaylo · Nov 4, 2022

    Hey Community,

    We are glad to invite you to the upcoming kick-off webinar on the FHIR for Women's Health programming contest.

    FemTech (software for women’s health) is an integral part of modern healthcare delivery that individualizes care and encourages patient empowerment. The women’s digital health market is projected to continue to grow as we prioritize and de-stigmatize women’s health issues.

    In this webinar, we'll show you some of the general principles and problems of solving issues connected to women's health, as well as share some great ideas for your inspiration. As always, we’ll discuss and answer the questions on how to build solutions using InterSystems IRIS for Health.

    Date & Time: Monday, November 14 – 11:00 AM EDT

    Speakers:  
    🗣 @Aya Heshmat, Product Specialist
    🗣 @Dean Andrews, Head of Developer Relations  
    🗣 @Evgeny Shvarov, InterSystems Developer Ecosystem Manager

    >> Register here <<

    1
    0 838
    Question prashanth ponugoti · Nov 15, 2022

    Hi Friends ,

    Here I need fetch the  OrgCode  value from party tag  whose  AgentId=1

    <OrgCode>abcd</OrgCode>

     

    <OrgCode>FCA</OrgCode>

     

    <OrgCode>FCA</OrgCode>

     

    Here is my loop logic which is not working , could you please help me

    FOR party=MyRequest.Msg.Parties.Party {
          if party.AgentId ="1"
          {
          set recipientCode=party.OrgCode 
          }
        }

     

    Thank you

    2
    0 495
    Article Evgeniy Potapov · Nov 15, 2022 6m read

    Today we will talk about InterSystems Reports. This is a BI system that provides you with tools to create static reports and export them to different file formats. We will see how it works using the DC Analytics public analytical sample as an example. In this article, we will examine how to familiarize yourself with the reports available in the repository, how to make a new report based on a ready-made data structure, and how to prepare a data structure from scratch.

    To begin with, you need a licensed copy of InterSystems Reports.

    0
    0 884
    Question Don Rozwick · Feb 3, 2017

    I am following the ESB tutorial(https://learning.intersystems.com/course/view.php?id=77) and using my local system(2014.1.5) windows 7.  I click the button on SoapUI for the Weather piece (http://127.0.0.1:57774/esb/soap/Weather/GlobalWeather.asmx) and get the response of   <text>ERROR &lt;Ens&gt;ErrBusinessDispatchNameNotRegistered: Business dispatch name &apos;EnsLib.SOAP.GenericService&apos; is not registered to run</text>

    checked the Event Log :

    ID: 116
    Type: Error
    Text: ERROR <Ens>ErrBusinessDispatchNameNotRegistered: Business dispatch name 'EnsLib.SOAP.
    6
    0 2723
    Question Fabio Care · Nov 14, 2022

    Hello, 

    I'm currently struggeling with a HTTP request to a URL, which contains an jpeg image file. 

    Testing the request with a browser or Postman results in the image being shown normally. 

    Using a %Net.HttpRequest with different configurations has resulted in a corrupted file. 

    My code works for some URLs from other servers perfectly fine, but with some it produces corrupted file contents which do not represent a jpeg. 

     REQ,STATUS,RET
     Set REQ=##class(%Net.HttpRequest).%New()
     Set REQ.Server="www.distrelec.de"
     set REQ.SSLConfiguration="agimero.quwiki.de"
     SET REQ.FollowRedirect=1
     SET REQ.

    5
    0 652
    Announcement Anastasia Dyubaylo · Nov 13, 2022

    Hi Developers,

    We're pleased to announce that InterSystems is hosting its partner days in Germany – InterSystems Partnertage DACH 2022

    During this time you will be able to exchange product innovations and practical tips and tricks between InterSystems experts and your colleagues in Darmstadt. And of course, a lot of networking, because there is a lot to catch up on! 

    🗓 Dates: November 23-24, 2022

    📍 Venue: Wissenschafts- und Kongresszentrum darmstadtium in Herzen Darmstadts
    Schloßgraben 1, 64283 Darmstadt
     

    The agenda of the two-day partner days consists of a mix of keynotes, informative sessions, and masterclasses. Read on for more details.

    0
    0 532
    InterSystems Official Raj Singh · Nov 8, 2022

    I'm pleased to announce a milestone in the lifecycle of the ObjectScript package manager, ZPM. The package manager has offered developers the ability to neatly package up ObjectScript code and deployment configuration settings and version information in a convenient way. Over the last few years, it has evolved greatly into an integral part of many development workflows.

    10
    3 2174
    Discussion Eduard Lebedyuk · Nov 9, 2022

    We're back with a code golf!

    You will receive a string. Each word in the string will contain a number. This number is the position that word should have in the sentence. If the input string is empty, return an empty string. The output can only be in words, without the given numbers.

    ##Input "i2s T1his Te4st a3"

    ##Output This is a Test

    13
    0 700
    Article Suriya Narayanan Suriya Narayanan Vadivel Murugan · Nov 12, 2016 5m read

    In this article, we will discuss about Orphaned Messages.

    What is an Orphaned Message

    Every message body is associated with a message Header which holds the metadata. The Header holds information like source configuration name, target configuration name, time created, time processed, associated message body reference, session information, message body class name, message status. When there are message body records that do not have their corresponding Header records those are called Orphan message bodies. We will discuss possible causes which could end up with orphan message bodies.

    5
    8 4772
    Announcement Evgeny Shvarov · Nov 12, 2022

    Hi Developers!

    Here're the technology bonuses for the InterSystems Women’s Health FHIR Contest 2022 that will give you extra points in the voting:

    • Women’s Health Topic
    • Women’s Health Dataset
    • IRIS For Health FHIR or FHIR Cloud Server Usage
    • Healthcare Interoperability
    • Embedded Python usage
    • Docker container usage
    • ZPM Package Deployment
    • Online Demo
    • Code Quality pass
    • Article on Developer Community
    • The second article on Developer Community
    • Video on YouTube
    • First Time Contribution

    See the details below.<--break->

    0
    0 364
    Question Thembelani Mlalazi · Sep 24, 2018

    I am trying to work with Java Selenium through Cache  my java programme works fine but I would like to pass parameters to the jar file form my Ensemble production. I followed this Tutorial here, For starters I wanted to copy it as it is and run that as an example but the (Stateless Service Mode Example) is not working within my eclipse environment with errors on the com.intersys. complaining about the service class.

    2
    0 625
    Announcement Anastasia Dyubaylo · Nov 11, 2022

    Hi Community,

    Watch this video to get a brief overview of the near- and long-term plans for HealthShare containerization and Kubernetes adoption, as well as a preview/demo of our current progress.

    ⏯ The Future of HealthShare in the Cloud: Containers/ Kubernetes @ Global Summit 2022

    0
    0 339
    Article Robert Cemper · Nov 11, 2022 2m read

    If one of your packages on OEX receives a review you get notified by OEX only own YOUR 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 did a major change and expect a changed review just let me know.

    0
    0 243
    Article David Loveluck · Feb 25, 2019 4m read

    There have been some very helpful articles in the community that show how to use Grafana with IRIS (or Cache/Ensemble) by using an intermediate database.

    But I wanted to get at IRIS structures directly. In particular, i wanted to access the Cache History monitor data that is accessible by SQL as described here

    https://community.intersystems.com/post/apm-using-cach%C3%A9-history-mo…

    and didn't want anything between me and the data.

    I already had class queries that returned the data i wanted, so i just needed to embed them in a REST class that returned JSON. I haven't included my class Grafana.

    5
    4 1753