WPF窗口未从IIS打开

时间:2015-01-30 14:50:09

标签: c# wpf web-services iis asmx

我创建了“网站项目”,在该项目中我添加了“ASMX Web服务”。我正在使用Web服务调用打开WPF应用程序。

以下是样本:

[WebMethod]
public void strt()
{
  Process.Start(@"C:\application.exe");
}

我的网络服务网址是这样的:

"localhost:12345\WebSite.asmx

现在,每当我运行此Web服务并从 Visual Studio 调用此方法时:

"WPF starts running and opens the WPF start Windows"

然后我将此网站配置为IIS并绑定到端口82.现在我的项目URL如下所示:

localhost:82\WebSite.asmx

我已经把所有事情都配置好了。我可以从IIS浏览到我的目录。

现在,当我转到“ASMX Web服务”并从IIS调用“Web服务方法”时, 调用该方法并启动“WPF应用程序”,但主要问题是

"WPF is running in background, not opening the start Windows of WPF".

如何解决这个问题?我必须在IIS中配置此项目并从IIS显示Star Up Window。

非常感谢任何帮助。 谢谢!

0 个答案:

没有答案