Good morning,
I am working on an application which mix ASP.NET/C# and launching an executable written in C++ and I need some help in order to establish a communication between C++ and ASP.NET.
See below the architecture of the application :
The interaction between the different bricks is as follows :
ASP.NET application is launched in a browser and by clicking a button the executable is launched. The executable is launched by using a CreateProcess in a C++ lib. It works fine but now I would like to send some progression and messages from the executable to the ASP application. I have thinking about named pipes, what do you think ? Should the executable be launched in C# side ?
Thank you in advance for your help.