Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Web 服务,我想从其中调用一个 .exe 文件。
这可能吗?如果是这样,它是如何完成的?
我已经用 WCF 完成了 c# 3.5。您可以从 Web 服务运行 exe。该 exe 将在服务所在的机器上运行,并且用户已配置了服务。您只需要编写一个普通的Process.Start(...)代码。
所以答案是肯定的,当然,exe 将在 Web 服务主机而不是客户端上运行。如果您需要更多详细信息,请在您的问题中更具体。