WCF
QuickPai
这个作者很懒,什么都没留下…
展开
-
学习博客园中Artech文章--实践所得
博客园中Artech文章链接: http://www.cnblogs.com/artech/archive/2007/02/26/656901.html 1.WCF有Self-Hosting和IIS-Hosting;2.IIS-Hosting中,如果新建虚拟目录之后访问http://127.0.0.1/wcfservices/calculatorservice.svc?wsdl 会原创 2013-05-13 17:19:21 · 657 阅读 · 0 评论 -
WCF InstanceContextMode
今天看了网上几篇文章,又查了下有关WCF的书,总结下ServiceBehavior里的InstanceContextMode,以备日后忘记了可以查阅;PerCall:每次任何一个主机任何一次对服务的请求,都将创建新的InstanceContext,并且调用后将被回收,WCF不会断开与客户端(通过客户端的代理)的连接,这比创建实例与连接所消耗的资源要少得多,服务的实例会被销毁,但是连接不断开,体转载 2013-06-07 16:00:08 · 713 阅读 · 0 评论 -
WCF 客户端识别认证之UserName认证
本文主要目地是搭建一个简单的WCF UserName认证,作为自己的笔记以备需要的时候能找到,闲话少说,下面开始正题。环境:Server 2008 R2 + VS2010 + IIS7.0例子:Client端(asp.net)在界面上面输入文字,点击按钮调用Server端(WCF)的service显示一段文字到Client端界面。过程:用户调用service,服务端验证用户传来的用户名原创 2013-07-12 11:03:05 · 6943 阅读 · 0 评论 -
How to Call WCF Services Synchronously and Asynchronously
Download example - 306.29 KBIntroduction This article is an example to show you how to call WCF services synchronously as well as asynchronously. Background The Windows Communication Found转载 2013-07-12 16:19:32 · 1093 阅读 · 0 评论 -
web.config in WCF Rest
原创 2014-05-09 16:26:30 · 873 阅读 · 0 评论