I have a legacy application in our company built on... ahem; Classic VB (VB 6). It has got a optimizer(CPLEX MIP Solver) component running on a Linux server and is developed in Java.
If we want to provide a Windows UI to invoke the optimizer instance on a remote linux server; how should I implement it?
The optimizer will pump out messages about its progress and it needs to be displayed on the UI.
I thought of two options as of now.
- Invoke the linux process with PLINK. Not sure whether it can bring STDOUT to windows.
- Build a small java app and load it as a daemon on the linux server and communicate over TCP.
Would appreciate expert advise. Thank for the helping hand!