此示例演示如何创建一个 RSS/Atom 源,以便与 Windows Communication Foundation (WCF) 整合。它是一个基本的“Hello World”程序,演示对象模型的基础知识以及如何在 Windows Communication Foundation (WCF) 服务上设置对象模型。
WCF 以服务操作的形式建立整合源的模型,这些服务操作返回一个特殊的数据类型:SyndicationFeedFormatter。SyndicationFeedFormatter 的实例可以将源序列化为 RSS 2.0 和 Atom 1.0 格式。下面的示例代码演示所使用的协定。
[ServiceContract(Namespace = "")]
interface IDiagnosticsService
{
[OperationContract]
//The [WebGet] attribute controls how WCF dispatches
//HTTP requests to service operations based on a URI suffix
//(the part of the request URI after the endpoint address)
//using the HTTP GET method. The UriTemplate specifies a relative
//path of 'feed', and specifies that the format is
//supplied using a query string.
[WebGet(UriTemplate="feed?format={format}")]
[ServiceKnownType(typeof(Atom10FeedFormatter))]
[ServiceKnownType(typeof(Rss20FeedFormatter))]
SyndicationFeedFormatter GetProcesses(string format);
}
使用 WebGetAttribute 属性对 GetProcesses
操作进行批注,该属性使您能够控制 WCF 如何向服务操作发出 HTTP GET 请求并指定所发送消息的格式。
如同任何 WCF 服务一样,联合源可以自承载于任何托管应用程序中。联合服务需要使用特定绑定 (WebHttpBinding) 和特定终结点行为 (WebHttpBehavior) 才能正常运行。新的 WebServiceHost 类提供了一个方便的 API,用于在不使用特定配置的情况下创建此类终结点。
WebServiceHost host = new WebServiceHost(typeof(ProcessService), new Uri("https://localhost:8000/diagnostics"));
//The WebServiceHost will automatically provide a default endpoint at the base address
//using the proper binding (the WebHttpBinding) and endpoint behavior (the WebHttpBehavior)
或者,可在 IIS 承载的 .svc 文件中使用 WebServiceHostFactory 来提供等效的功能(此技术未在此示例代码中演示)。
<%@ ServiceHost Language="C#|VB" Debug="true" Service="ProcessService" %>
由于此服务使用标准 HTTP GET 接收请求,因此可以使用任何识别 RSS 或 ATOM 的客户端来访问此服务。例如,可以通过在识别 RSS 的浏览器(如 Internet Explorer 7)中导航到 https://localhost:8000/diagnostics/feed/?format=atom 或 https://localhost:8000/diagnostics/feed/?format=rss 来查看此服务的输出。
还可以使用 WCF 联合对象模型如何映射到 Atom 和 RSS,通过命令性代码读取联合数据并对其进行处理。
XmlReader reader = XmlReader.Create( "https://localhost:8000/diagnostics/feed/?format=rss",
new XmlReaderSettings()
{
//MaxCharactersInDocument can be used to control the maximum amount of data
//read from the reader and helps prevent OutOfMemoryException
MaxCharactersInDocument = 1024 * 64
} );
SyndicationFeed feed = SyndicationFeed.Load( reader );
foreach (SyndicationItem i in feed.Items)
{
XmlSyndicationContent content = i.Content as XmlSyndicationContent;
ProcessData pd = content.ReadContent<ProcessData>();
Console.WriteLine(i.Title.Text);
Console.WriteLine(pd.ToString());
}
设置、生成和运行示例
在 Windows Communication Foundation 示例的一次性安装过程中的安装说明中介绍的计算机上,确保您对于 HTTP 和 HTTPS 具有正确的地址注册权限。
生成解决方案。
运行控制台应用程序。
当控制台应用程序正在运行时,使用识别 RSS 的浏览器导航到 https://localhost:8000/diagnostics/feed/?format=atom 或 https://localhost:8000/diagnostics/feed/?format=rss。
![]() |
---|
您的计算机上可能已安装这些示例。在继续操作之前,请先检查以下(默认)目录。
<安装驱动器>:\WF_WCF_Samples
如果此目录不存在,请访问针对 .NET Framework 4 的 Windows Communication Foundation (WCF) 和 Windows Workflow Foundation (WF) 示例(可能为英文网页),下载所有 Windows Communication Foundation (WCF) 和 WF 示例。此示例位于以下目录。
<安装驱动器>:\WF_WCF_Samples\WCF\Basic\Syndication\DiagnosticsFeed
|