前言:编写一个Windows服务程序,定时从数据库中拿出记录发送邮件。
测试环境:Visual Studio 2005 SP1、Windows Server 2003 SP2
一、新建项目
打开VS2005,新建一个“Windows 服务”项目。
二、添加Timer
展开“工具箱”,在“组件”标签下找到“Timer”双击,这时就添加了一个Timer组件,修改“Name”属性为“timEmail”、“Enabled”为“false”、“Interval”为“60000”。
接下来要做一些修补工作,不知是VS2005的BUG还是我没找着地方,在VS2003下是不存在该问题的:刚从“组件”下添加的“Timer”按理说应该来自“System.Timers命名空间”,也只有“System.Timers.Timer”才能在Windows服务程序中正常工作,但是现在这个Timer却是属于“System.Windows.Forms.Timer”的。所以得稍作修改,打开“.Designer.cs”文件,修改如下:
#region 组件设计器生成的代码
//........以上略
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
//this.timEmail = new System.Windows.Forms.Timer(this.components);原
this.timEmail = new System.Timers.Timer();//改
this.timEmail.Interval = 60000;
this.ServiceName = "Service1";
}
#endregion
//private System.Windows.Forms.Timer timEmail;原
private System.Timers.Timer timEmail;//改
三、添加配置文件
服务每次调用配置文件,获取一些基本参数,这样一些变更就可直接修改配置文件而不必修改代码。新建ServiceConfig.xml存放于项目“Bin\Debug\”下:
<?xml version="1.0" encoding="utf-8" ?>
<serviceConfig>
<serviceItem
name="sendEmail"
enable="true"
elapsed="60000"
connectionString="your database connection..."
smtp="smtp address"
account="your email account..."
password="your password..." >
</serviceItem>
</serviceConfig>
四、以下是实现代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.ServiceProcess;
using System.Text; using System.Xml;//操作配置文件
using System.IO;//写日志
using System.Threading;//使用线程
namespace ClientWindowsService
{
public partial class ClientService : ServiceBase
{
public ClientService()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
//服务启动
this.timEmail.Enabled = true;
this.tSendEmail();
}
protected override void OnStop()
{
//服务停止
this.timEmail.Enabled = false;
}
private void timEmail_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
//定时器
this.tSendEmail();
}
//开启新进程发送邮件
private void tSendEmail()
{
Thread t = new Thread(new ThreadStart(sendEmail));
t.Start();
}
//发送邮件函数
private void sendEmail()
{
XmlDocument doc = new XmlDocument();
//添加System.Windows.Forms引用,获取执行目录
string configFile = System.Windows.Forms.Application.StartupPath.ToString() + "\ServiceConfig.xml";
doc.Load(@configFile);
XmlElement root = doc.DocumentElement;
foreach (XmlNode node in root)
{
//如果配置文件中开启服务
if (node.Attributes["name"].Value == "sendEmail" && node.Attributes["enable"].Value == "true")
{
try
{
//读取数据库,发送邮件操作,略
}
catch (Exception error)
{
//写错误日志
using (StreamWriter sw = new StreamWriter(System.Windows.Forms.Application.StartupPath.ToString() + @"" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt", true, System.Text.Encoding.UTF8))
{
sw.WriteLine(DateTime.Now.ToString() + ":");
sw.WriteLine(error.ToString());
sw.WriteLine("---------------------------------------------");
sw.Close();
}
}
}
}//end foreach
}
}//end class
}//end namespace
五、布署服务
添加完相应的函数代码后,从代码视图切换到设计视图,点鼠标右键选择“添加安装程序” 在设计模式下右键-->添加安装程序-->设置serviceProcessInstaller1的Account为LocalSystem,设置serviceInstaller1的StartType为Automatic。
选择当前解决方案,设置方案属性中的"启动项目"为刚才所添加的项目名称.按F5运行编译当前项目,会弹出一个对话框"无法从命令行或者调试器启动服务,必须首先安装Windows服务(使用installutil.exe),然后用Server Explorer、Windows服务管理工具或NET START命令启动它"。错误没有关系,只要当前解决方案\项目文件夹\bin\Debug\文件夹下面多了一个EXE文件就好了。
至此自己需要的服务基本操作已经完成.剩下来的就是编译.注册启动服务了.
Windows服务器注册停止 打开CMD窗口--开始--运行--输入CMD,回车 注册服务命令
cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 InstallUtil.exe D:\HardWareServerService.exe (HardWareServerService为工程的名字)
net start ComputerService (ComputerService是服务的名字)
重新注册服务
cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 InstallUtil.exe /u d:\HardWareServerService.exe 从您的C# 解决方案下拷贝HardWareServerService.exe文件到D盘HardWareServerService.exe InstallUtil.exe D:\HardWareServerService.exe net start ComputerService
其中D:\HardWareServerService.exe可以修改成"您当前的解决方案目录\项目名称\bin\Debug\HardWareServerService.exe"
启动刚注册服务: 显示桌面-在桌面上右击“我的电脑”,选择“管理”就可以打计算机管理控制台,选择“服务和应用程序”里面的“服务”,在右侧的服务列表中找到刚注册的ComputerService服务(默认状态为停止),选择该服务右击启动所选择的ComputerService服务就完成了所有的操作,以后每次开机后就自动启动运行该服务。
http://xiaoou2002.blog.163.com/blog/static/2158666920108153337164/