Duplicate: Is it possible to run an executable from a web service?
Hello
I have a Webservice and I want to run an exe file through this Webservice
Webservice and exe file are on the same computer
How can i do this?
Thanks in advance
Process.Start ()?
You can use the System.Diagnostics.Process object to start an external process.
EDIT
Documentation
An example of using some additional functions (input / output / error redirection). It is located in VB, but should be easily portable.
Process.Start("path of the program");
Process.Start("app.exe")
OR even better, wrap it in a Windows service, publish the schema for it, and use the async request for the bus.
Source: https://habr.com/ru/post/1709552/More articles:Keeping the sort order of items stored in the HABTM association - CakePHP - sqlSQL: View to Table - is it view queries using table indexes? - sqlThe name of the conflict model is ruby-on-railsSafari Browser Does Not Display Error 401 Page - safariHow to save rewriting rules in a database? - mysqlWhat is the best way to debug explorer.exe crash? - debuggingJava error outside JVM - works on Windows, not Linux - javaIs it possible to run an executable from a web service? - exeWhy is there no pure Python SSH1 implementation (version 1)? - pythonRadRails Test Passed - Any Free Options for Rails in Eclipse? - eclipseAll Articles