WCF 学习笔记

WCF 学习笔记,第1张

概述WCF 学习笔记 Kagula 2012-2-13 正文     本文记录学习中碰到的最常用WCF使用方式。 使用WCF目的:     解决Silverlight程序同服务器程序高负载下的网络通讯问题。     之所以使用WCF方式是出于以下两个原因     [1]原来是想使用Active MQ产品,但是,支持Silverlight的Active MQ客户端SDK还不够成熟。     [2]直接自 @H_419_6@WCF 学习笔记

Kagula

2012-2-13

正文

    本文记录学习中碰到的最常用WCF使用方式。

使用WCF目的:

    解决Silverlight程序同服务器程序高负载下的网络通讯问题。

    之所以使用WCF方式是出于以下两个原因

    [1]原来是想使用Active MQ产品,但是,支持Silverlight的Active MQ客户端SDK还不够成熟。

    [2]直接自己在TCP上作两层协议(一层是数据完整性协议、剩下一层做数据安全性协议),或则自己在Silverlight上实现JMS客户端框架,但是工作量太大。

 

学习环境:

    Win7(64位) 、 VS2010SP1 with C#

 

WCF简介:

    WCF(windows Communication Foundation)是Microsoft提出的网络通讯框架。承载WCF服务的进程称为宿主,宿主可以是Win32 Console程序,也可以是IIS。

 

我的第一个WCF服务程序

在VS2010SP1内,新建C#的Win32 Console项目。第一个项目由ICalculator.cs,calculatorService.cs,App.config,program.cs四个文件组成。

第一步:定义服务契约(Service Contract)

  在项目里引入.NET的System.ServiceMode程序集,WCF框架的绝大部分实现和API定义在该程序集中。

  定义服务契约的源码(ICalculator.cs)如下:

 

using System;using System.ServiceModel;namespace testWCF{    [ServiceContract(name="CalculatorService",namespace="WCFDEMO")]    public interface ICalculator    {        [OperationContract]        double Add(double x,double y);                [OperationContract]        double Subtract(double x,double y);                [OperationContract]        double Multiply(double x,double y);                [OperationContract]        double divIDe(double x,double y);    } }


第二步:实现服务

CalculatorService.cs源码清单如下

 

using System;using System.Collections.Generic;using System.linq;using System.Text;namespace testWCF{    class CalculatorService:ICalculator    {        public double Add(double x,double y)        {            return x + y;        }                public double Subtract(double x,double y)        {            return x - y;        }                public double Multiply(double x,double y)        {            return x * y;        }                public double divIDe(double x,double y)        {              return x / y;        }    }}


第三步:添加App.config文件

    新建模板,可以右键单击项目名称,添加[windows C# Items]->[General]->[Application Configuration file]添加App.config文件。

    建立App.config目的,是定义哪些服务接口可供外部调用,接口绑定方式,源码如下

 

<?xml version="1.0" enCoding="utf-8" ?><configuration>  <system.serviceModel>    <behaviors>      <serviceBehaviors>        <behavior name="MetadataBehavior">          <serviceMetadata httpGetEnabled="true" httpGetUrl="http://127.0.0.1:8085/calculatorservice/Metadata" />        </behavior>      </serviceBehaviors>    </behaviors>    <services>      <service behaviorConfiguration="MetadataBehavior" name="testWCF.CalculatorService">        <endpoint address="http://127.0.0.1:8085/calculatorservice" binding="wshttpBinding" contract="testWCF.ICalculator" />      </service>    </services>  </system.serviceModel>  </configuration>


第四步:在项目的主函数里填入Hosting代码

启动服务

program.cs源码清单如下

 

using System;using System.ServiceModel;using System.ServiceModel.Description;namespace testWCF{    class Program    {        //在Win7下必须使用下面的命令授权        //netsh http add urlacl url=http://+:8085/calculatorservice user=kagula-pc\kagula        //kagula-pc:是我机器的名字        //kagula:是我机器中的缺省用户名        static voID Main(string[] args)        {            using (ServiceHost host = new ServiceHost(typeof(CalculatorService)))             {                host.Opened += delegate                {                    Console.Writeline("CalculaorService已经启动,按任意键终止服务!");                };                host.open();                Console.Read();            }        }    }}


在Win7下你需要参考下面的控制台命令,给WCF服务程序的endpoint授权。

“netsh http add urlacl url=http://+:8085/calculatorservice user=kagula-pc\kagula”

其中“kagula-pc”是我机器的名称,“kagula”是我在OS中的默认用户名。

 

我的第一个WCF客户端程序

新建Win32 Console应用程序

第一步:引入上文中的“ICalculator.cs”文件

第二步:为引用WCF服务新建App.config文件源码如下

<?xml version="1.0" enCoding="utf-8" ?><configuration>  <system.serviceModel>    <clIEnt>      <endpoint address="http://127.0.0.1:8085/calculatorservice" binding="wshttpBinding" contract="testWCF.ICalculator" name="calculatorservice" />    </clIEnt>  </system.serviceModel></configuration>

 

第三步:修改program.cs文件,调用WCF服务,源码如下

using System;using System.Collections.Generic;using System.ServiceModel;using testWCF;namespace testWCFClIEnt2{    class Program    {        static voID Main(string[] args)        {            using (ChannelFactory<ICalculator> channelFactory = new ChannelFactory<ICalculator>( "calculatorservice"))            {                ICalculator proxy = channelFactory.CreateChannel();                using (proxy as Idisposable)                {                    Console.Writeline("x + y = {2} when x = {0} and y = {1}",1,2,proxy.Add(1,2));                    Console.Writeline("x - y = {2} when x = {0} and y = {1}",proxy.Subtract(1,2));                    Console.Writeline("x * y = {2} when x = {0} and y = {1}",proxy.Multiply(1,2));                    Console.Writeline("x / y = {2} when x = {0} and y = {1}",proxy.divIDe(1,2));                }            }        }    }} 

现在第一对WCF服务端、客户端程序可以运行了。

参考资料

[1]《我的WCF之旅(1):创建一个简单的WCF程序》

http://www.cnblogs.com/artech/archive/2007/02/26/656901.HTML

[2]《使用WCF的相关问题》

http://www.iteye.com/blogs/tag/WCF

[3]《silverlight 连接wcf服务使用》

http://hi.baIDu.com/mldark/blog/item/99d0fccec7266d2af9dc618c.HTML

[4]《如何使用 WCF 服務透過 TCP 傳輸在 Microsoft Silverlight 4》

http://support.microsoft.com/kb/2425652/zh-tw

总结

以上是内存溢出为你收集整理的WCF 学习笔记全部内容,希望文章能够帮你解决WCF 学习笔记所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1070440.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存