如何从Windows服务提供网页?

时间:2012-06-06 05:26:30

标签: c# .net web-services windows-services webserver

我有一个.NET Windows服务,我希望用户能够使用Web UI进行配置。是否可以使用Windows服务提供Web UI,而不是某种外部Web服务器,如apache或IIS?如果有帮助,Windows服务还托管WCF和RESTful Web服务。

1 个答案:

答案 0 :(得分:2)

如果您愿意提供静态页面,则可以在RESTful WCF服务中实现此方法;

    public Message HtmlContent()
    {
        return WebOperationContext.Current.CreateTextResponse("<h1>Hello World</h1>", "text/html");
    }