如何通过我的Webservice运行.exe文件?

时间:2009-06-01 20:33:14

标签: c# .net web-services

  

重复:   Is it possible to run an executable from a web service?

您好

我有Webservice,我想通过此Webservice

运行exe文件

Webservice和exe文件在同一台计算机上

我该怎么做?

提前谢谢

4 个答案:

答案 0 :(得分:3)

的Process.Start()?

答案 1 :(得分:3)

您可以使用System.Diagnostics.Process对象启动外部进程。

修改

Documentation

Example using some advanced features(输入/输出/错误重定向)。它在VB中,但应该很容易移植。

答案 2 :(得分:1)

Process.Start("path of the program");

答案 3 :(得分:0)

Process.Start("app.exe")

或更好,将其包装在Windows服务中,为其发布架构并通过异步请求使用到总线。