我有一个 WCF 应用程序,它有两个服务,我试图使用 net.tcp 在单个 Windows 服务中托管它们。我可以很好地运行任何一个服务,但是一旦我尝试将它们都放在 Windows 服务中,只会加载第一个服务。我已经确定正在调用第二个服务 ctor,但 OnStart 永远不会触发。这告诉我 WCF 在加载第二个服务时发现了一些问题。
使用 net.tcp 我知道我需要打开端口共享并在服务器上启动端口共享服务。这一切似乎工作正常。我尝试将服务放在不同的 tcp 端口上,但仍然没有成功。
我的服务安装程序类如下所示:
[RunInstaller(true)]
public class ProjectInstaller : Installer
{
private ServiceProcessInstaller _process;
private ServiceInstaller _serviceAdmin;
private ServiceInstaller _servicePrint;
public ProjectInstaller()
{
_process = new ServiceProcessInstaller();
_process.Account = ServiceAccount.LocalSystem;
_servicePrint = new ServiceInstaller();
_servicePrint.ServiceName = "PrintingService";
_servicePrint.StartType = ServiceStartMode.Automatic;
_serviceAdmin = new ServiceInstaller();
_serviceAdmin.ServiceName = "PrintingAdminService";
_serviceAdmin.StartType = ServiceStartMode.Automatic;
Installers.AddRange(new Installer[] { _process, _servicePrint, _serviceAdmin });
}
}
两种服务看起来都非常相似
class PrintService : ServiceBase
{
public ServiceHost _host = null;
public PrintService()
{
ServiceName = "PCTSPrintingService";
CanStop = true;
AutoLog = true;
}
protected override void OnStart(string[] args)
{
if (_host != null) _host.Close();
_host = new ServiceHost(typeof(Printing.ServiceImplementation.PrintingService));
_host.Faulted += host_Faulted;
_host.Open();
}
}