I am working on a system that starts a web service. The code is effectively:
try
{
var hostRESTDataService = new WebServiceHost(typeof(MyDataService));
hostRESTDataService.Open();
MessageBox.Show("Created REST Data Service");
}
catch (Exception exception)
{
MessageBox.Show(exception.ToString());
}
It is built on .NET 4 on Windows 8.1. We cannot upgrade it to 4.5.
Hundreds of installations work fine, but at the point of open(), one German PC gives (translated): "System.Runtime.InteropServices.SEHException : External component has thrown an exception".
Have looked at posts such as this one and tried to get more info using this post, but cannot find the answer.
Does anyone know how we can find a solution to this problem please?