下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、VS2008下做的一个WCF服务的例子 最近同事想要学习WCF,于是我从以前的项目中抽提了一个简单的例子。该例子分为五个部分:Host:服务器端,只是提供服务,用控制台程序实现的;IService:服务契约,要随WCF客户端分发的一个类库,是WCF服务向外公布的服务接口的集合;Service:服务实现,是服务的主体,驻留WCF服务器端,并通过接口向WCF客户端提供服务的类库;Provider:服务代理,WCF客户端通过调用它来间接调用到WCF服务;Client:客户端,WCF服务的使用者;服务器端Host代码如下:using System;using System.Collections.Ge
2、neric;using System.Linq;using System.Text;using System.ServiceModel;using System.Reflection;using System.Configuration;using System.ServiceModel.Configuration;namespace Host class Program static void Main(string args) using (var host = new ServiceHost(typeof(Service.Caculate) host.Open(); Console.Wr
3、iteLine(Wcf Service is running !); Console.Read(); 服务器端的App.Config:服务契约IService,是一个类库项目,随客户端分发 :(注:客户端可能分为多个应用程序,调用WCF服务的每个项目都要引用Provider.DLL和IService.DLL)using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ServiceModel;namespace IService ServiceContract pu
4、blic interface ICaculate OperationContract decimal Add(decimal x, decimal y); 服务实现部分,是一个类库项目,驻留服务器端不随客户端分发,代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using IService;using System.ServiceModel;namespace Service / /Author : Aricous /Datetime : 20110301 /Funct
5、ion : Description / public class Caculate : ICaculate / / / / / / public decimal Add(decimal x, decimal y) return (x + y); 供客户端调用的代理,这里称为服务提供者,是一个类库,随客户端分发:(注:客户端可能分为多个应用程序,调用WCF服务的每个项目都要引用Provider.DLL和IService.DLL)using System;using System.Collections.Generic;using System.Linq;using System.Text;usi
6、ng System.ServiceModel;namespace Provider / /Author : Aricous /Datetime : 20110301 /Function : Description / public class Wcf private static readonly Wcf instance = new Wcf(); private Wcf() private static object mutex = new object(); private static IService.ICaculate _CaculateService; / / / public s
7、tatic IService.ICaculate CaculateService get if (_CaculateService = null) lock (mutex) _CaculateService = new ChannelFactory(CaculateService).CreateChannel(); return _CaculateService; 客户端调用WCF服务的例子:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syst
8、em.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.ServiceModel;namespace Client public partial class Mainform : Form public Mainform() InitializeComponent(); private void button1_Click(object sender, EventArgs e) decimal x = Convert.ToDecimal(textBox1.Text.Trim(); decimal y = Convert.ToDecimal
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年洗车场绿色环保技术与设备转让合同3篇
- 2024聘请教练合同
- 二零二四平面模特演艺事业聘用合同-影视界签约范本9篇
- 2024门窗安装安全协议与合同书
- 2025年度铝合金门窗行业绿色建筑认证合同4篇
- 2025年版IT咨询服务合同样本6篇
- 二零二四南京租房合同家具家电使用及维修协议3篇
- 2024英伦游学夏令营境外紧急联络与协助服务合同3篇
- 2025年度高标准住宅小区物业管理系统升级合同2篇
- 二零二五版货物配送及仓储配送合同6篇
- 2025年度土地经营权流转合同补充条款范本
- 南通市2025届高三第一次调研测试(一模)地理试卷(含答案 )
- 2025年上海市闵行区中考数学一模试卷
- 2025中国人民保险集团校园招聘高频重点提升(共500题)附带答案详解
- 0的认识和加、减法(说课稿)-2024-2025学年一年级上册数学人教版(2024)001
- 重症患者家属沟通管理制度
- 医院安全生产治本攻坚三年行动实施方案
- 法规解读丨2024新版《突发事件应对法》及其应用案例
- 信息安全意识培训课件
- Python试题库(附参考答案)
- 成都市国土资源局关于加强国有建设用地土地用途变更和
评论
0/150
提交评论