VS2008下做的一个WCF服务的例子_第1页
VS2008下做的一个WCF服务的例子_第2页
VS2008下做的一个WCF服务的例子_第3页
VS2008下做的一个WCF服务的例子_第4页
VS2008下做的一个WCF服务的例子_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论