私はwcfをホストするウィンドウサービスを持っています:
protected override void OnStart(string[] args)
{
if (serviceHost != null)
{
serviceHost.Close();
}
serviceHost = new ServiceHost(typeof('myservicetype'));
NetTcpBinding binding = new NetTcpBinding(SecurityMode.None);
serviceHost.AddServiceEndpoint
(typeof('myservicetype'),
binding, ConfigurationManager.AppSettings["myconfig"]
);
serviceHost.Open();
Console.ReadLine();
}
wcfはリクエストをリッスンします。リクエストの1つは、サーバーでメモ帳を開く
ことです。サービスがセッション0(GUIなし...)で実行されているため、これは機能しません
。これを修正するにはどうすればよいですか?