原文地址:http://www.cnblogs.com/AaronYang/p/2950931.html
既然是小孩系列,当然要有一点基础才能快速掌握,归纳,总结的一个系列,哈哈
前言:
第一篇嘛,不细讲,步步教你创建一个简单SOA案例,对WCF有个基本的认识,我不会细讲概念
1.1 SOA简介
SOA(Service-Oriented Architecture,面向服务架构),既是一种编程模式,也是软件开发的一种架构方法。
根据这种架构方法&#xff0c;应用程序就会由“具有一定行为&#xff08;服务&#xff09;的功能”单元组成的。<如果你写过WebService&#xff0c;你就会更好理解了&#xff0c;如果你以前用三层形式写&#xff0c;那么原来的数据访问层&#xff0c;你只能供你本程序中的程序调用&#xff0c;假如你用了这种架构&#xff0c;例如&#xff0c;根据一个ISBN查询到对应书的价格&#xff0c;本来是一个方法&#xff0c;如果你用这个架构&#xff0c;这个方法&#xff08;行为&#xff09;就会变成一种服务&#xff0c;这个服务绑定到一个url地址上&#xff0c;然后你根据这个url加个特殊的参数&#xff08;例如ISBN&#xff09;就可以返回一个json或者xml&#xff0c;然后你就可以调用了&#xff0c;那么例如你的andriod平板&#xff0c;ipad&#xff0c;只要可以通过url就可以获得你想要的数据&#xff0c;就可以达到跨平台的效果&#xff0c;跟WebService很像&#xff0c;但是WCF完全不会是那么简单的>
1.2 基本开始
前言&#xff1a;
我们准备完成一个简单的新闻发布系统
内部编辑发布新闻有更多的功能&#xff0c;但是外部我只提供查看功能&#xff0c;添加自己的新的新闻&#xff0c;但是新闻类型是 好友提供
可能由于我们的新闻系统比较好&#xff0c;我们提供一些接口&#xff0c;让别人自己做自己的客户端&#xff0c;也能实现发布新闻&#xff0c;但是我们的源代码不可能给人家的&#xff0c;所以我们就可以用WCF去做了&#xff0c;再比如&#xff0c;我们想做个iphone应用&#xff0c;别人下载我们的应用也可以查看我们发布的新闻&#xff0c;我们不可能在苹果手机上去访问数据库&#xff0c;我们通过服务去更新数据&#xff0c;中间可以利用WCF实现跨平台&#xff0c;现在我们开始做吧
Contract是契约的意思&#xff0c;最常见的&#xff0c;务必背诵
1.打开Visual Studio 2010&#xff0c;新建一个空白的解决方案
命名NewsSystem,点击确定
然后右击解决方案&#xff0c;添加4个解决方案文件夹
Clients&#xff0c;Hosts&#xff0c;Services&#xff0c;Interfaces
2.右击Interfaces&#xff0c;添加2个类库
NewsInterface
NewsExternalInterface
添加WCF中最重要的两个程序集引用
同样的操作对NewsExternalInterface类库也操作下
3. 删除默认添加的两个Class1.cs文件&#xff0c;分别对应向两个类库添加INewsInterface,INewsExternalInterface
4.向两个接口&#xff0c;都添加下面命名空间引用
using System.Runtime.Serialization;
using System.ServiceModel;
5.interface前面加上 public关键字
例如&#xff1a;
6.实体类&#xff0c;我们就不分开写了&#xff0c;直接写在对应的接口里面吧&#xff0c;这里只是演示WCF的使用&#xff0c;数据库操作&#xff0c;直接使用linq to sql了&#xff0c;企业里大部分用EF code first&#xff0c;关于这个以后有时间再讲。为了不与数据库的表明冲突&#xff0c;后面加一个Dto了
主要提前领略一下 操作契约&#xff0c;数据契约&#xff0c;枚举的使用
我们先操作NewsInterface类库
6.1新建一个枚举&#xff0c;NewsTypeEnum&#xff0c;演示枚举的基本写法
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
namespace NewsInterface
{
[DataContract]
public enum NewsTypeEnum
{
[EnumMember]
Sports,
[EnumMember]
IT,
[EnumMember]
Country,
[EnumMember]
Funny
}
}
NewsTypeEnum是一个公开的枚举类型,注意,enum前必须加上DataContract特性,枚举类型每个常量都必须使用EnumMember特性来表示
6.2 添加一个NewsDto实体类, 演示实体的基本写法
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
using System.ServiceModel;
namespace NewsInterface
{
[DataContract]
public class NewsDto
{
///
/// 新闻标题
///
[DataMember]
public string NewsTitle { get; set; }
///
/// 新闻内容
///
[DataMember]
public string Content { get; set; }
///
/// 新闻类型&#xff0c;这里顺便演示下枚举
///
[DataMember]
public NewsTypeEnum NewsType { get; set; }
///
/// 发布时间
///
[DataMember]
public DateTime publishTime { get; set; }
///
/// 最后更新时间
///
[DataMember]
public DateTime LastUpdateTime { get; set; }
///
/// 作者
///
[DataMember]
public string Author { get; set; }
///
/// 最后修改作者
///
[DataMember]
public string LastAuthor { get; set; }
///
/// 阅读量
///
[DataMember]
public int ReadCount { get; set; }
}
}
6.3 打开INewsInterface&#xff0c;添加公开方法&#xff0c;演示 普通的接口&#xff0c;这里在WCF中专业名叫数据契约
我们只演示基本的简单的更删改查&#xff0c;还有个显示新闻关联图片5个方法&#xff0c;再次声明&#xff0c;我不讲新闻发布的新闻逻辑&#xff0c;这里只是演示WCF的用法
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
using System.ServiceModel;
namespace NewsInterface
{
[ServiceContract]
public interface INewsInterface
{
///
/// 添加一条新闻
///
/// 新闻实体
///
添加成功后返回添加成功后的ID [OperationContract]
int NewsAdd(NewsDto dto);
///
/// 删除一条新闻
///
/// 新闻实体
///
是否删除成功 [OperationContract]
bool NewsDelete(NewsDto dto);
///
/// 更新一条新闻
///
/// 新闻实体
///
是否更新成功 [OperationContract]
bool NewsUpdate(NewsDto dto);
///
/// 获得所有新闻
///
///
返回新闻列表 [OperationContract]
List
NewsList();
///
/// 根据ID获得新闻的图片
///
/// 新闻编号
///
新闻相关联的图片 [OperationContract]
byte[] GetNewsImage(string Id);
}
}
7.创建服务
右击 Services解决方案文件夹&#xff0c;添加一个类库&#xff0c;名字叫NewsServices
将Class1.cs文件名改下
7.1 先编译解决方案&#xff0c;然后 添加引用
7.2 实现接口
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
using System.ServiceModel;
using NewsInterface;
namespace NewsServices
{
public class NewsImpl:INewsInterface
{
public int NewsAdd(NewsDto dto)
{
throw new NotImplementedException();
}
public bool NewsDelete(NewsDto dto)
{
throw new NotImplementedException();
}
public bool NewsUpdate(NewsDto dto)
{
throw new NotImplementedException();
}
public List
NewsList() {
throw new NotImplementedException();
}
public byte[] GetNewsImage(string Id)
{
throw new NotImplementedException();
}
}
}
8. 添加宿主Hosts文件夹下&#xff0c;我们以控制台演示,宿主可以是很多种形式的&#xff0c;具体以后讲
同时修改属性 用.NET Framework4
然后添加引用
打开Program.cs填入一下基本代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
using System.ServiceModel;
using NewsServices;
namespace NewsHosts
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("服务宿主正在打开...");
try
{
//ToDo 等待开启服务代码
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.WriteLine("打开成功&#xff01;");
Console.ReadKey();
}
}
}
使用ServiceHost对象&#xff0c;添加Program类中
在try…catch代码块中添加如下代码&#xff1a;
添加宿主服务配置&#xff0c;我们利用WCF工具配置&#xff0c;也可以手动写
默认生成的App.config右击它&#xff0c;没有使用WCF工具配置&#xff0c;我们打开
vs2010菜单栏中的 WCF服务配置编辑器
使用之前&#xff0c;请确保你的解决方案重新生成了
下面我录个屏&#xff0c;讲一下配置
这里注意记住终结点这个地址&#xff0c;通过这个地址&#xff0c;我们的其他客户端&#xff0c;就可以获得我们想要的数据&#xff0c;我们可以直接把数据发在这个地址上&#xff0c;返回JSON或者XML&#xff0c;或者是.NET对象&#xff0c;然后你继续处理&#xff0c;如果JSON或者XML&#xff0c;那么WEB就可以使用$.ajax等jQuery的方法获得数据了&#xff0c;用于显示在网页上了
设置启动项&#xff0c;运行
先把服务能启动成功&#xff01;
代码下载&#xff1a; 点我下载