WCF Service的一些参考资源

Blog

The .NET Endpoint

http://blogs.msdn.com/b/endpoint/

随着云计算的推进,现在是 http://blogs.msdn.com/b/appfabric/

 The WCF services ecosystem

http://blogs.msdn.com/b/endpoint/archive/2009/11/18/the-wcf-services-ecosystem.aspx

· WCF Core Services – Allows full flexibility for building operation-centric services.  This includes industry standard interop, as well as channel and host plug-ability.  Use this for operation-based services which need to do things such as interop with Java, be consumed by multiple clients, flow transactions, use message based security, perform advanced messaging patterns like duplex, use transports or channels in addition to HTTP, or host in processes outside of IIS.

· WCF WebHttp/AJAX Services – Is best when you are exposing operation-centric HTTP services to be deployed at web scale or are building a RESTful service and want full control over the URI/format/protocol.

· WCF Data Services – Including a rich implementation of OData for .NET, Data Services are best when you are exposing your data model and associated logic through a RESTful interface 

· WCF Workflow Services – Is best for long running, durable operations or where the specification and enforcement of operation sequencing is important

· WCF RIA Services – is best for building an end-to-end Silverlight application

 以上是09年发布的,可见这几年的发展主要是围绕这些展开的.

至于Data Services的内容可参考 http://www.cnblogs.com/2018/category/262512.html

.net 4的增强和推进

为了和Web应用的更方便整合,针对Rest等提供了更多的方面支持和框架,如webhttp, rest service,Web APIs等

Introducing WCF WebHttp Services in .NET 4

http://blogs.msdn.com/b/endpoint/archive/2010/01/06/introducing-wcf-webhttp-services-in-net-4.aspx

 

WCF REST Service Template 40(CS)

http://visualstudiogallery.msdn.microsoft.com/fbc7e5c1-a0d2-41bd-9d7b-e54c845394cd

 How to do API Key Verification for REST Services in .NET 4

http://blogs.msdn.com/b/rjacobs/archive/2010/06/14/how-to-do-api-key-verification-for-rest-services-in-net-4.aspx

http://visualstudiogallery.msdn.microsoft.com/b1d767d9-d6bf-41ee-89a8-313d338e63b6/

 

Sockets, RIA/JS and WCF Web API at MIX, a whole lotta love for the web

http://blogs.msdn.com/b/endpoint/archive/2011/04/24/websockets-ria-js-and-wcf-web-api-at-mix-a-whole-lotta-love-for-the-web.aspx

 

WCF Web APIs

http://blogs.msdn.com/b/endpoint/archive/tags/wcf+web+apis/

http://blogs.msdn.com/b/endpoint/archive/2010/11/01/wcf-web-apis-http-your-way.aspx

 随着HTML5的推广,Web Socket形式的支持估计以后会有大量的使用

时间: 2024-10-14 21:52:49

WCF Service的一些参考资源的相关文章

如何创建一个RESTful WCF Service

原创地址:http://www.cnblogs.com/jfzhu/p/4044813.html 转载请注明出处   (一)web.config文件 要创建REST WCF Service,endpoint binding需要用webHttpBinding,参见<webHttpBinding.basicHttpBinding和wsHttpBinding的区别>. web.config <?xml version="1.0"?> <configuration

MVC应用程序使用Wcf Service

前一篇Insus.NET有演示过MVC应用程序使用Web Service, 此篇Insus.NET想继续演示Service,不过是WCF Service. 两者实施起来,多少有些不一样. 在Services目录下,创建一个Calculator.svc 服务.创建成功之后,它会生生成一个接口以及一个svc的文件: 在Calculator.svc中,它是实作上面的接口,而且均实现了四个方法: 更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/we

WCF后续之旅(3) WCF Service Mode Layer 的中枢—Dispatcher

在本系列的第一部分.第二部分中,我们对WCF的channel layer进行了深入的讨论.我们接下来继续讨论WCF的service mode layer.本篇文章着重介绍service 端的ServiceMode.写作此篇文章旨在达到以下两个目的: 希望读者对ServiceMode有一个大致的了解,结合前面介绍的channel layer的相关知识,帮助读者了解WCF的整个实现机制和执行的流程. 介绍ServiceMode涉及到的绝大部分extension point,让读者在具体的项目开发中能

如何使用WCF Service Web Role

这篇文章我们主要在local development fabric上创建一个WCF服务角色,并且在一个控制台应用程序中使用它. Windows Azure是一个基于Silverlight的软件,它的开发门户现在也已经焕然一新了.它的所有信息,所有的操作都可以在一个页面中完成.使用这个全新的门户,从配置guest操作系统到停止或重启一个服务,几乎在一个页面上,就可以把所有的事情完成.在本文中,我们将会创建一个WCF服务角色,把它托管在local development fabric上,然后在一个控

用JavaScript调用WCF Service

原文:用JavaScript调用WCF Service   原创地址:http://www.cnblogs.com/jfzhu/p/4039604.html 转载请注明出处   前面介绍过<Step by Step 创建一个WCF Service>和<使用WCF的Trace与Message Log功能>,本文介绍一下如何用JavaScript来调用WCF Service. WCF Service的代码如下: IHelloService.cs using System.Service

Using WCF Service Library

1. Two Ways to create template WCF Service There are a few built-in WCF service templates within Visual Studio 2010; twoof them are Visual Studio WCF Service Library and Visual Studio WCF ServiceApplication.    

Hosting the WCF service

1. Hosting the service in a managed application We can create a .NET managed application and host a WCF service inside theapplication. The hosting application can be a command-line application, a WindowsForms application, or a web application. This h

VSTO的参考资源

最近有个项目需要结合Office进行定制开发,由于以前的项目使用是VBA宏等实现的,有不少的弱点,准备使用VSTO进行升级,对这个进行了初步的调研,作为入门的参考吧. 开发入门 两个参考图书: VSTO 3.0 for Office 2007 Programming http://www.ppurl.com/2010/03/vsto-3-0-for-office-2007-programming.html Professional Office Business Application Deve

Azure开发者任务之八:使用WCF Service Web Role

Accenture的CIO Frank Modruson说,云让Accenture的IT变得更好,更快,更便宜了.在他正在准备进一步的IaaS(Infrastructure as a Service)迁移计划的过程中,他分享了自己关于云计算的5个经验. Frank Modruson有一样更好,更快,更便宜的东西.作为业务和IT服务提供商Accenture的CIO,这是他想要交付给他的内部客户的东西,反过来,这也是他们向客户承诺的东西.Modruson说:"我相信技术,也相信技术可以用多种方式促进