Pesquisar

Discussão (2)1
Entre ou crie uma conta para continuar
Pergunta
· Set. 8

Testing Java Gateway ( EnsLib.JavaGateway.Service) Connection from Ens.BusinessOperation/EnsLib.SQL.OutboundAdapter

We currently have Business Operation that we built to use the EnsLib.SQL.OutboundAdapter so we can make Microsoft SQL Server Stored Procedure calls. The BO is attached to a Java Gateway Service.

Some of our MS SQL Databases have moved from being OnPrem to Azure Cloud. We have started seeing where we are receiving errors on the BO saying that we cannot connect to the Azure Database, but we never receive a Disconnect from the Azure Database.

Once this happens it seems that the Java Gateway still thinks the connection is opened, and we have to Stop/Start the Java Gateway to get the connection to resolve itself.

Is there a way that we could use EnsLib.JavaGateway.Service to test the connection and retry if we don't have a connection from our Business Operation so we can prevent a hung state. Currently I scripted within the Alerting to Stop/Start the Java Gateway if we alert on the Business Operation.

2 novos comentários
Discussão (2)2
Entre ou crie uma conta para continuar
Resumo
· Set. 8
Anúncio
· Set. 8

Recompensa de artículos de agosto: Spotlight de la comunidad

Agosto fue un mes inspirador para nuestra Comunidad 🙌

Un enorme agradecimiento a todos los que participasteis en la Recompensa de Artículos de agosto 💙

Vuestras contribuciones hacen que nuestra base de conocimiento siga creciendo y facilitan que otros aprendan, resuelvan problemas y se inspiren.

Un reconocimiento especial a quienes se tomaron el tiempo de escribir artículos totalmente nuevos y compartir su experiencia (cada uno recibió 5.000 puntos 🎉):

Y también a quienes se unieron al reto y nos ayudaron en la búsqueda de artículos interesantes (cada uno recibió 30 puntos 🙌):

👏 Gracias por vuestro esfuerzo, creatividad y disposición para compartir conocimiento.

Y la buena noticia es… ¡la nueva Recompensa de Artículos ya os está esperando en Global Masters! No perdáis la oportunidad de participar y ganar recompensas este mes.

Discussão (0)1
Entre ou crie uma conta para continuar
Artigo
· Set. 8 3min de leitura

How to get InterSystems IRIS Community Edition

Hey folks! Having recently onboarded to InterSystems, I realized that despite having a totally free and awesome Community Edition, it's not super clear how to get it. I decided to write up a guide highlighting all the different ways you can access the Community Edition of InterSystems IRIS:

Get InterSystems IRIS Community Edition as a Container

Working with a containerized instance of the Community Edition is the recommended approach for folks who are new to developing on InterSystems IRIS, and in my opinion it's the most straightforward. InterSystems IRIS Community Edition can be found on DockerHub; if you have an InterSystems SSO account, you can also find it in the InterSystems Container Registry.

In either case, you'll want to pull the image you want using the docker CLI:

docker pull intersystems/iris-community:latest-em
// or
docker pull containers.intersystems.com/intersystems/iris-community:latest-em

Next, you'll need to start the container: In order to interact with IRIS from outside the container (for example, to use the management portal) you'll need to publish some ports. The following command will run the IRIS Community Edition container with the superserver and web server ports published; note that you can't have anything else running that depends on ports 1972 or 52773!

docker run --name iris -d --publish 1972:1972 --publish 52773:52773 intersystems/iris-community:latest-em

Get InterSystems IRIS Community Edition in the Cloud

You might want to avoid having to deal with a local installation entirely; if that's the case, you can get up and running with a cloud deployment of InterSystems IRIS Community Edition. All major cloud providers are supported; check our Cloud Partners page for more information. For this example, we're going to focus on deploying on AWS.

Start by finding the InterSystems IRIS Community Edition on the AWS Marketplace:

You can click "View purchase options" and log into your account to view the subscription page:

 

Scrolling down, you can click "Subscribe," fill out the required information, and then click "Deploy" to deploy the IRIS Community Edition as a cloud node! Check out our documentation on deploying InterSystems IRIS to the cloud for more information.

Get InterSystems IRIS Community Edition as an Install Kit

If you prefer to work with InterSystems IRIS installed directly to your machine and you don't want to deal with containers, you can download an install kit for your system from the InterSystems Evaluation Service. In order to download an install kit, you'll need an InterSystems SSO login; the good news is, if you have an account here on the Developer Community you already have one! Otherwise, you can click "Register for a new account" and complete the steps that follow:

 Once you've logged in, you should see the following page; click "Download Community Edition" to begin downloading the install kit:

 

You'll be prompted to fill out some information on exactly which version of InterSystems IRIS you need, and which platform you will be installing it on:

 

For most use cases, you'll want to select "InterSystems IRIS Community" and the most recent version available for your platform. After agreeing to the TOS, you're ready to download the install kit! Follow the installation instructions in the platform-specific documentation, and you're all set!

Discussão (0)2
Entre ou crie uma conta para continuar