Windows服务和WPF应用程序并排

时间:2014-10-23 12:19:49

标签: wpf vb.net windows

我正在使用WPF(VB.NET)开发应用程序,应用程序侦听事件(这很好),该事件返回一个在Web服务响应到达时传递给Web服务的变量,一个对话窗口出现显示响应的值
这些是我的问题:

  • 如何将代码的监听部分作为Windows服务运行?
  • 服务部分是否可以启动GUI以显示来自Web服务的响应?

  • 1 个答案:

    答案 0 :(得分:0)

    该服务可以与用户运行的应用程序通信。服务无法显示任何UI组件。 我这样做的方式: 1.让运行的服务应用程序监听事件。 2.服务应用程序实现了一个接口,该接口定义了我将用于与UI应用程序通信的方法和属性。

    public interface IMyService
    {
        string MyString { get; }
        string MyMethod();
    }
    

    该服务实现接口AND MarshalByRefObject:

    public class MyService : MarshalByRefObject, IMyService {/*...*/}
    
    1. 当服务启动时,我通过在服务的构造函数中调用这两个方法来注册一个通信通道:

      private static void RegisterChannel()
          {
              try
              {
                  TcpServerChannel channel = new TcpServerChannel(MyNamespace.API.MyServiceChannels.MyServiceChannel);
                  ChannelServices.RegisterChannel(channel, false);
              }
              catch { } //To suppress exception when the channel is already registered 
          }
      
      private static void RegisterRemotableClass()
      {
          try
          {
              RemotingConfiguration.RegisterWellKnownServiceType(typeof(MyService), "MyService", WellKnownObjectMode.Singleton);
          }
          catch { }
      }
      
    2. 在GUI应用程序中,我尝试连接到服务:

      public void GetService()
      {
          try
          {
              string tcpAddress = MyServiceChannels.MyAppTcpAddress;
              ChannelServices.RegisterChannel(new TcpClientChannel(), false);
              _serviceApp = (IMyService)Activator.GetObject(typeof(IMyService), tcpAddress);
          }
          catch (Exception ex)
          {
            //...
          }
      }
      
    3. 如果一切顺利,您可以访问服务应用程序的属性,方法和事件。