我有一个 windows 服务,我想在这个服务上公开一个 web api,这样我们的用户就可以通过 http 与服务交互。
我了解如何做一个自托管 web api ( http://www.asp.net/web-api/overview/hosting-aspnet-web-api/self-host-a-web-api ),现在我的主要问题是如何将我的 ApiController 与将要执行的类接口,以便在处理 http 请求时触发事件,并且在 ApiController 之外发生一些事情。
基于以下示例,如何在我的服务类中注册我的事件处理程序 UserRegistered ?
Web API 控制器
public class MyController : ApiController
{
public delegate void OnPostRegister(Profile user);
public event OnPostRegister UserRegistered;
public void PostStream(Profile user)
{
try
{
IProfileBuilder builder = new ProfileBuilder();
builder.RegisterProfile(user);
if (UserRegistered!= null)
{
UserRegistered(user);
}
}
catch (Exception ex)
{
throw new HttpException(500, ex.Message);
}
}
服务等级
public partial class Service1 : ServiceBase
{
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
//initialize web api
var config = new HttpSelfHostConfiguration("http://localhost:8080");
config.Routes.MapHttpRoute(
"API Default", "api/{controller}/{id}",
new { id = RouteParameter.Optional });
using (var server = new HttpSelfHostServer(config))
{
server.OpenAsync().Wait();
}
//Load registered profiles
}
protected override void OnStop()
{
}
}