System.Runtime.InteropServices.SEHException:外部组件引发了异常

时间:2015-04-28 15:03:28

标签: c# wcf .net-4.0 wcf-rest

我正在开发一个启动Web服务的系统。代码有效:

try
{
    var hostRESTDataService = new WebServiceHost(typeof(MyDataService));
    hostRESTDataService.Open();
    MessageBox.Show("Created REST Data Service");
}
catch (Exception exception)
{
    MessageBox.Show(exception.ToString());
}

它基于Windows 8.1上的.NET 4构建。我们无法将其升级到4.5。

数以百计的安装工作正常,但在open()时,一台德国PC提供(翻译):“System.Runtime.InteropServices.SEHException:外部组件抛出异常”。

查看了this one等帖子并尝试使用this post获取更多信息,但无法找到答案。

有谁知道我们如何找到这个问题的解决方案呢?

0 个答案:

没有答案