标签: wcf iis
我在WCF服务中使用以下代码来执行记事本:
public void ExecuteApp() { Process p = new Process(); p.StartInfo.FileName = "notepad.exe"; p.Start(); }
我从远程计算机上调用它,但WCF托管计算机没有任何反应。