Initial Release
WiFIS Connect is an application you can install in InterSystems Healthcare products to build your connection to WiFIS interoperability platform in SISCAT.
WiFIS Connect includes components you can include in your interoperability production to connect your application to WiFIS platform.
Run a quick test using a test docker environment and have a look at the examples. You can use VSCode, see some tutorials.
git clone https://github.com/intersystems-ib/wifis-connect
docker-compose build
docker-compose up
You can access now to the Management Portal using superuser
/ SYS
.
docker exec -it wifis-connect bash
iris session IRIS
zn "WIFISCONNECT"
do ##class(Ens.Director).StartProduction("WiFIS.V202.Test.ProdSAML")
Send some sample messages. In the directory you downloaded the code, copy some files from /samples into /samples/input
See what’s happened in the Production
WiFIS Connect can be installed in:
You can still find deprecated releases here.
Make sure you have HealthCare HL7 XML installed in your namespace.
If you want to generate SAML tickets using SAML-COS, make sure you have it installed in your namespace.
Download latest version into a temporary directory (e.g. /tmp):
git clone https://github.com/intersystems-ib/wifis-connect
do $SYSTEM.OBJ.Load("/tmp/wifis-connect/src/WiFIS/V202/Utils/Installer.cls", "ck")
do ##class(WiFIS.V202.Utils.Installer).Run("/tmp/wifis-connect")
do ##class(WiFIS.V202.Utils.Installer).Run("/tmp/wifis-connect", "no")
For more complex installation options see Dockerfile example.
WiFIS is based on HL7 v.2.5 in XML version.
WiFIS Easy Connect use MHS.3 / HD.2
content on each message to identify workflow and action.
For instance, workflow Derivacions and action DemanarNova:
HOSPITAL
#Derivacions#DemanarNova
When sending messages, you must implement some components for your application and the plug-in WiFIS Connect components.
In order to receive messages from WiFIS you can use WiFIS Connect components and connect them to some of your application components.
EnsLib.HL7.Message
you can process.WiFIS Connect includes a sample production WiFIS.V202.Test.Prod
to let you explore how you can use the package.
Main components are:
Component | Description |
---|---|
Leer HL7 ER7 File | Reads Files HL7 in ER7 format from a directory and sends them to WiFIS Crear Msg |
Leer HL7 XML File | Reads Files HL7 in XML format from a directory and sends them to WiFIS Crear Msg |
WiFIS Crear Msg | Receives an HL7 message, transforms it to XML and build a WiFIS GenericReq. Sends WiFIS GenericReq to WiFIS Router. |
WiFIS Router | Receives a message WiFIS GenericReq and send it to the appropiate operation |
WiFIS X BO | Operation which is a WebService client and sends SOAP messages |
Component | Description |
---|---|
WIFIS.V.BS.X | WebService that receives WiFIS messages. Build a WiFIS GenericReq and sends it to WiFIS ProcesarMsg |
WiFIS Procesar Msg | Receives a WiFIS GenericReq, transforms it to ER7 and sends it to Escribir HL7 ER7 Fichero and Escribir HL7 XML Fichero. |
Escribir HL7 ER7 Fichero | Receives an EnsLib.HL7.Message and writes and HL7 file in ER7 format. |
Escribir HL7 XML Fichero | Receives an EnsLib.HL7.Message and writes and HL7 file in XML format. |
WiFIS requires a SAML ticket in the SOAP messages you send to the interoperability platform.
WiFIS Connect includes a utility to generate those SAML Tickets. You only need to set it up to use your own certificates.
You can find the sample production using the SAML feature in WiFIS.V202.Test.ProdSAML
.
WiFIS Connect has two different ways of generating the SAML ticket:
IBSP.CONN.SAML.BO.SAMLSigner
to your production and leave it with this same name.IBSP.CONN.SAML.BO.SAMLcos
to your production with name SAMLcos
and add the SAML Attributes in JSON formatWiFIS.V202.BP.Router
and, in the GenerateSAML
setting of this Business Process, select Using ObjectScript
.WiFIS.V202.Test.ProdSAML
as a starting point.NOTE
This application is an open-source add-on for InterSystems HealthCare products and does not form part of the official release. InterSystems WRC technical assistance will not attend issues related with this application.