I developed a program that uses Delphi, which, among some functions, does a lot of reading a database of float values and many calculations on these values. At the end of these calculations, he displays a screen with some results. These calculations take some time to complete: today it’s something like 5-10 minutes, before finally showing the results screen.
Now my clients are requesting the .NET version of this program, since almost all my other programs have already gone to .Net. But I am afraid that this time-consuming calculation procedure will not correspond to the web scenario, and the program will lead to a user error for a certain time.
So, I would like to get some tips or advice on how to do this. Initially, I thought about calling a local executable (which could even be my Delphi initial program, in a console way) and after a while it displays a results screen on a web page. But, again, I'm afraid this is not the best approach.
source
share