I have a WPF application that allows me to use the digital person sdk to capture fingerprints, and I have a web application that sends the generated exe from the wpf application, but I want to run that application from an application or website.
The way I run the application from asp.net is this:
Process programa = new Process();
programa.StartInfo.UseShellExecute = false;
ProcessStartInfo info = null;
info = new ProcessStartInfo("C:/Users/rutaapp.exe"); //Aquí va la ruta de la aplicación física.
programa = Process.Start(info);
It works perfect, but I want to have communication between the wpf application and the web.
I read that I can make an application type WPF Browser Application since it seems to allow me to execute a Forms application via web, but when I open Visual Studio, that type of project does not appear, only WPF Application appears to me.
Does anyone know how I can have that project? or how to communicate between these two applications ?? Thanks.