我有一个自主托管的WCF服务作为
Windows服务运行,使用WebAPI处理REST的东西,它的工作原理很好.
我意识到我应该真的使用IIS或类似的东西去实际的网页,但是有没有办法得到一个服务调用返回“只是”html?
即使我指定了“BodyStye Bare”,我仍然可以围绕实际的HTML获取XML包装,即
<?xml version="1.0" encoding="UTF-8"?> <string> html page contents .... </string> [WebGet(UriTemplate = "/start",BodyStyle = WebMessageBodyStyle.Bare)] public string StartPage() { return System.IO.File.ReadAllText(@"c:\whatever\somefile.htm"); }
有没有办法这样做,还是应该放弃?
解决方法
bodystyle属性对WCF Web API没有影响.下面的例子将会起作用.这不一定是最好的做法,但假如我没有打错字符,它应该可以工作:-).
[WebGet(UriTemplate = "/start")] public HttpResponseMessage StartPage() { var response = new HttpResponseMessage(); response.Content = new StringContent(System.IO.File.ReadAllText(@"c:\whatever\somefile.htm")); response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html"); return response; }
以流形式读取文件可能更有意义,并使用StreamContent而不是StringContent.或者很容易使自己的FileContent类接受文件名作为参数.
而且,自主选项与使用IIS一样返回静态HTML也是可行的.在封面下,他们使用相同的HTTP.sys内核模式驱动程序来传送位.