在 windows 服务中驻留远程对象

简介:
 因为控制台应用程序不能由windows服务提供,因此不要尝试读取或写入到控制台。可以使用windows服务向文件或者事件日志发送跟踪或错误消息。System.Diagnostics.EventLog类提供了对windows事件日志读写的方法。
   下面是远程对象使用的程序集: MathLibrary.dll
using System;
using System.Runtime.Remoting;
using System.Diagnostics;
namespace MathLibrary
{
 /// <summary>
 /// SimpleMath 的摘要说明。
 /// </summary>
 public class SimpleMath : MarshalByRefObject
 {
  public SimpleMath()
  {
   WriteLogEntry("SimpleMath actor called");                                                                             
  }
  public int Add(int n1,int n2)
  {
   WriteLogEntry(string.Format("SimpleMath.Add({0},{1})",n1,n2));                           return n1 + n2;
  }
  public int Subtract(int n1,int n2)
  {
   WriteLogEntry(string.Format("SimpleMath.Subtract({0},{1})",n1,n2));                   return n1 - n2;
  }
  public void WriteLogEntry(string msg){
   EventLog.WriteEntry("MathService",msg);
  }
 }
}
建立windows服务:
新建立一个windows服务项目,命名为 MathService,下面是OnStart()方法中的对远程对象的注册:
  protected override void OnStart(string[] args)
  {
   HttpChannel channel = new HttpChannel(13101);
   ChannelServices.RegisterChannel(channel);
   RemotingConfiguration.RegisterWellKnownServiceType(typeof(MathLibrary.SimpleMath),"SimpleMath.soap",WellKnownObjectMode.Singleton);
  }
通过Installutil.exe可以安装或卸载windows服务。
Installutil directory\MathService.exe  //安装
Installutil directory\MathService.exe  //卸载
启动windows服务后,可以利用下面的客户端测试,同时,可以在事件查看器中查看相应的消息。
客户端程序:
using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Http;
using MathLibrary;
namespace MathClient
{
 /// <summary>
 /// ClientMain 的摘要说明。
 /// </summary>
 class ClientMain
 {
  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main(string[] args)
  {
   HttpChannel channel = new HttpChannel();
   ChannelServices.RegisterChannel(channel);
   object remoteObj = Activator.GetObject(typeof(MathLibrary.SimpleMath)," [url]http://localhost:13101/SimpleMath.soap[/url]");
   SimpleMath math = (SimpleMath)remoteObj;
   do{
    Console.WriteLine(" 5 + 2 = {0}",math.Add(5,2));
    Console.WriteLine(" 5 - 2 = {0}",math.Subtract(5,2));
   }while(Console.ReadLine() != "q");
   Console.WriteLine("Press Enter to end");
   Console.ReadLine();
  }
 }
}


本文转自 august 51CTO博客,原文链接:http://blog.51cto.com/august/6923,如需转载请自行联系原作者
相关文章
|
2月前
|
NoSQL Redis Windows
windows服务器重装系统之后,Redis服务如何恢复?
windows服务器重装系统之后,Redis服务如何恢复?
69 6
|
1月前
|
边缘计算 安全 网络安全
|
1月前
|
开发框架 .NET API
Windows Forms应用程序中集成一个ASP.NET API服务
Windows Forms应用程序中集成一个ASP.NET API服务
85 9
|
1月前
|
应用服务中间件 Apache Windows
免安装版的Tomcat注册为windows服务
免安装版的Tomcat注册为windows服务
85 3
|
1月前
|
Java 关系型数据库 MySQL
java控制Windows进程,服务管理器项目
本文介绍了如何使用Java的`Runtime`和`Process`类来控制Windows进程,包括执行命令、读取进程输出和错误流以及等待进程完成,并提供了一个简单的服务管理器项目示例。
32 1
|
2月前
|
Java 应用服务中间件 Windows
windows服务器重装系统之后,Tomcat服务如何恢复?
windows服务器重装系统之后,Tomcat服务如何恢复?
56 10
|
2月前
|
消息中间件 Java Kafka
windows服务器重装系统之后,Kafka服务如何恢复?
windows服务器重装系统之后,Kafka服务如何恢复?
30 8
|
1月前
|
弹性计算 关系型数据库 网络安全
阿里云国际版无法连接和访问Windows服务器中的FTP服务
阿里云国际版无法连接和访问Windows服务器中的FTP服务
|
3月前
|
API Docker Windows
2024 Ollama 一站式解决在Windows系统安装、使用、定制服务与实战案例
这篇文章是一份关于Ollama工具的一站式使用指南,涵盖了在Windows系统上安装、使用和定制服务,以及实战案例。
2024 Ollama 一站式解决在Windows系统安装、使用、定制服务与实战案例
|
2月前
|
监控 Windows
Windows服务器的服务如何实现自动启动?
Windows服务器的服务如何实现自动启动?
392 1
下一篇
无影云桌面