- 1、本文档共18页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《WCF教程3》.doc
[原创]我的WCF之旅(3):在WCF中实现双向通信(Bi-directional Communication)
昨天写了一篇Remoting中如何实现双向通信的文章《[原创].NET Remoting: 如何通过Remoting实现双向通信(Bidirectional Communication) 》,作为对比,今天我们来讨论一下WCF的双向通信。
为了使我们能够更好地对比双向通信在Remoting中和WCF中的实现,我们的Sample采用一样的业务逻辑——调用一个数学计算的远程调用,除了传递相应的操作数之外,我们还传递一个对象,这个对象可以在Server端中回调 (Callback) 把运算结果在Client端显示出来。可以通过下面的URL下载源代码:/files/artech/Artech.WCFService.2007.03.02.zip
Step1:构建整个Solution的整体构架。
整个Solution的架构在我的之前的Blog有了详细的介绍([原创]我的WCF之旅(1):创建一个简单的WCF程序),这里只作一个简单的介绍。
Artech.WCFService.Contract: Class Library Project,用来保存Contract(Service Contact、Message Contract、Data Contract), 之所以把Contract独立出来的原因是考虑到他同时被Server端——Service本身和Service Hosting和Client端使用
?Artech.WCFService.Service:Class Library Project,Service的业务逻辑, 这个Project引用Artech.WCFService.Contract Project和System.ServiceModel DLL。
?Artech.WCFService.Hosting:Console Application, 用于以Self-Hosting的方式Host Service。这个Project引用Artech.WCFService.Contract和Artech. Project WCFService.Service。Project和System.ServiceModel DLL。
?Artech.WCFService.Client:Console Application, 用以模拟现实中的调用Service的Clinet。这个Project引用Artech.WCFService.Contract Project 和System.ServiceModel DLL。
?http://localhost/WCFService: Web Site Project, 用于模拟如何把Service Host到IIS中。这个Project引用Artech.WCFService.Contract、Artech.WCFService.Service和System.ServiceModel DLL。
Step 2 在Artech.WCFService.Contract定义Calculator Service 和Callback的Contract
1.IDuplexCalculator.cs
using?System;using?System.Collections.Generic;using?System.Text;using?System.ServiceModel;namespace?Artech.WCFService.Contract{?????[ServiceContract(CallbackContract?=?typeof(ICalculatorCallback))]????public?interface?IDuplexCalculator????{?????????[OperationContract]????????void?Add(double?x,?double?y);????}}
2.ICalculatorCallback.cs
using?System;using?System.Collections.Generic;using?System.Text;using?System.ServiceModel;namespace?Artech.WCFService.Contract{????[ServiceContract]????public?interface?ICalculatorCallback????{????????[OperationContract]????????void?ShowResult(double
您可能关注的文档
- 《TS16949标准和内审员培训》.ppt
- 《TSC_TTP-244ME_Plus条码打印机操作手册》.pdf
- 《TT100超声波测厚仪使用说明书》.pdf
- 《TThe man in the water课件》.ppt
- 《TWI_Welding_Training_1》.ppt
- 《TWI_Welding_Training_5》.ppt
- 《Two-Wire Peripheral Expansion for the AT89C2051 Microcontroller》.pdf
- 《UDM Systems Die sep wafer cleaning - bil》.ppt
- 《Unit 3 Weather》.doc
- 《UTM-1 0 1 H 型超声波测厚仪》.doc
文档评论(0)