- 1、本文档共30页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
wcf入门教程wcf入门教wcf入门教程wcf入门教程
我们通过实现一个简单的示例来对WCF有个直观而浅显的认识,希望对初次涉及WCF的朋友有所帮助。
可以简单地认为WCF程序分为4部分:契约、服务、宿主、客户端。我们通过一个例子来逐步完成各部分,示例程序中,客户端可以获取一个信息列表,列表中每一项包括ID、值、读值时刻、状态、状态变动时刻。这里我用的是VS2010。?
首先,创建一个空白解决方案WCFDemo。
我们将在其中添加n个项目,分别实现契约、服务、宿主、客户端。如果用VS2010新建“WCF服务库”或者“WCF服务应用程序”,它会默认把契约和服务放在一个项目中,我们这个示例把契约和服务分别放在2个类库项目中。?
第一步:契约
1、添加一个类库WCFDemo.Contracts。
2、在类库中添加2个文件DataContracts.cs和ServiceContracts.cs,分别放置数据契约和服务契约。
3、添加引用System.Runtime.Serialization和System.ServiceModel。
4、编写代码如下:
DataContracts.cs
using System;using System.Runtime.Serialization;namespace WCFDemo.Contracts{ [DataContract] public class DemoData { [DataMember] public int ID { get; set; } [DataMember] public double Value { get; set; } [DataMember] public DateTime ValueTime { get; set; } [DataMember] public DeviceState State { get; set; } [DataMember] public DateTime StateTime { get; set; } } public enum DeviceState { Unknown, Working, Broken }}
??(题外话:DemoData类中各个属性的写法有些偷懒,其实个人不建议这样。这里是为了代码简单……)
ServiceContracts.cs
using System.Collections.Generic;using System.ServiceModel;namespace WCFDemo.Contracts{ [ServiceContract] public interface IDemoService { [OperationContract] ListDemoData GetMonitorData(); }}
?第二步:服务
1、添加一个类库WCFDemo.Services。
2、在类库中加入一个文件Services.cs用来放置实现服务的类。
3、添加引用WCFDemo.Contracts。
4、编写代码如下:???
using System;using System.Collections.Generic;using WCFDemo.Contracts;namespace WCFDemo.Services{ public class DemoService : IDemoService { Random random = new Random(); public ListDemoData GetMonitorData() { ListDemoData r = new ListDemoData(); r.Add(new DemoData() { ID = 1, Value = random.Next(100), ValueTime = DateTime.Now, State = DeviceState.Unknown, StateTime = DateTime.Now }); r.Add(new DemoData() { ID = 2, Value = random.Next(100), ValueTime = Date
您可能关注的文档
- unit3_a_healty_life课件unit3_a_healthy_life课件unit3_a_healthy_life课件unit3_a_healthy_life课件.ppt
- unit4 sectionb 1a-2funit4 section b 1a-2funit4 section b 1a-2funit4 section b 1a-2f.ppt
- unit5 there i a big bed第一课时unit5 there is a big bed第一课时unit5 there is a big bed第一课时unit5 there is a big bed第一课时.ppt
- unit8topic导学案nit8topic导学案unit8topic导学案unit8topic导学案.doc
- unit4 wildlif protectionunit4 wildlife protectionunit4 wildlife protectionunit4 wildlife protection.ppt
- unit4第一课时1a-2课件unit4第一课时1a-2c课件unit4第一课时1a-2c课件unit4第一课时1a-2c课件.ppt
- units 1~2 wil there be less pollutionunits 1~2 will there be less pollutionunits 1~2 will there be less pollutionunits 1~2 will there be less pollution.ppt
- unit11_how_wa_your_school_trip_语法课件unit11_how_was_your_school_trip_语法课件unit11_how_was_your_school_trip_语法课件unit11_how_was_your_school_trip_语法课件.ppt
- units 1~2 howmany hours do you sleep every nightunits 1~2 how many hours do you sleep every nightunits 1~2 how many hours do you sleep every nightunits 1~2 how many hours do you sleep every night.ppt
- unit5测试卷unit5试卷测试卷.doc
- Unit 7 Food Festival Topic 1We're preparing for a food festival.Section B说课稿 -2024-2025学年仁爱科普版英语八年级下册.docx
- 《爱迪生孵小鸡》课件.ppt
- 16.2.1二次根式的乘法 说课稿 2023—2024学年人教版八年级数学下册[001].docx
- 《爱莲说》复习课件.ppt
- 《爱玛电动车微信》课件.ppt
- 5.16 独立自主的和平外交 说课稿 2023-2024学年部编版八年级历史下册.docx
- 《爱登堡广告策划》课件.ppt
- 《爱的香料》课件.ppt
- 《爱护牙齿从小做起》课件.ppt
- 《爱是什么》课件.ppt
文档评论(0)