Simplify openIMIS reference package

Context

All persons interested by openIMIS will try the reference application before planning any customization. Today, modular infrastructure has at least 5 components quite different from each other:

  • Database: T-SQL

  • Gateway: Perl

  • WebApp: IIS+VB.NET

  • Backend: Python

  • Frontend: Javascript

By working on the support tickets, it was clear that this is way too complex. In addition, today’s architecture uses a hack for the session management (Lua/Perl script in the gateway) which leads to a timeout synchronization issue.

All those technologies run under Windows but not under Linux (blocked by WebApp).

Once the WebApp will be completely migrated, a rework will be required to remove it from the stack and to manage differently the session.

Proposal

Reduce the number of components to simplify the setup.

1. Remove frontend

As it was already done for Nepal, the frontend code can be hosted in IIS. Because there is no “From” folder in the WebApp, it can be deployed along with the WebApp and it can be updated later without impacting the rest of the WebApp.

Because there is no drawback, the proposal is to include the reference build frontend within the WebApp release package in GitHub.

2. Solve the session timeout and remove the gateway

The complexity of removing the gateway comes from the Lua script used for the ibackend authentication that needs to be deployed on IIS. Even if there is a package called ISSLUA, it is not given that it will work with the reverse proxy setup.

A solution could be to make an “Authentication” service in C# (same as the REST API) that will act as a reverse proxy for the python ibackend (GraphQL). The advantage of the solution is to reuse the REST API’s authentication code and add some standard reverse proxy code. The potential drawback is the additional load on the WebApp, but this solution simplifies the scaling because it will support a perfectly sticky session on the frontend.

Example: https://stackoverflow.com/questions/35903237/a-simple-reverse-proxy-using-asp-net-c-sharp-with-authentication

The backend doesn’t use the WebApp authentication but a file-based authentication. Therefore it should be easy to configure a reverse proxy (ARR and rewrite IIS module) and to disable anonymous access. Windows authentication could be used instead.

4. Remove the ibackend and backend

This step is maybe not required/wanted, but we could configure the backend as CGI in IIS and the ibackend as CGI called by a .net code (to use the same authentication as WebApp)

Example: https://medium.com/better-programming/running-python-script-from-c-and-working-with-the-results-843e68d230e5

Did you encounter a problem or do you have a suggestion?

Please contact our Service Desk



This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. https://creativecommons.org/licenses/by-sa/4.0/