I have an ASP.NET MVC application, when a user clicks on the submit button of that application, the server should capture all the information in the form, and call a local windows application ( located at "c:\Program Files..." and do some processing before passing back the data to the users.
Now, is this possible? Is there any security restriction on web application calling local application?
In other words, can I start a new process inside my asp.net application by using the System.Diagnostic.Process class?