NHibernate+WCF项目实战(三)使用WCF对外提供Webservices接口并进行单元测试

NHibernate+WCF项目实战 

第一篇、项目介绍与搭建

第二篇、使用NHibernate实现数据访问并进行单元测试

第三篇、使用WCF对外提供Webservices接口并进行单元测试

第四篇、使用WAS对Webservices接口进行压力测试。

开发环境

    我的开发环境是VS2008 SP1+SQLServer 2005

    NHibernate版本是2.1.0.4000

  NUnit版本是2.5.2

  Microsoft Web Application Stress Tool 版本是1.1 

本节概要

    上一篇完成了用户操作的三个方法,本篇将通过WCF以webservices的方式对外提供接口。同时使用NUnit对webservices中的方法进行单元测试。

另,上一篇对NHibernate的使用还有很多地方值的改善,同时也感谢园友李永京的指点。

开发契约 contract

Contract项目为类库项目,该项目下会包含WCF中的ServiceContract,这是一些被加上Attribute [ServiceContract]的接口。同时接口中的方法也需要加上Attribute [OperationContract]
另,考虑到下一篇要对接口进行压力测试,所以接口中的方法也加上Attribute [WebGet],可以通过get方式访问方法。

下面就开始定义UserInfo的Contract—IuserInfo接口

using

    System.ServiceModel;

    System.ServiceModel.Web;//webGet

using  System;
using  System.Collections.Generic;
using  System.Linq;
using  System.Text;

using  System.ServiceModel;
using  System.ServiceModel.Web; // webGet

namespace  Lee.Contract
ExpandedBlockStart.gifContractedBlock.gif
{
    [ServiceContract]
    
public interface IUserInfo
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        [OperationContract]
        [WebGet]
        
bool AddUserInfo(string name, string description, string state);
        [OperationContract]
        [WebGet]
        
bool ExistUserInfo(string name);
        [OperationContract]
        [WebGet]
        
bool UpdateUserInfo(string name, string description, string state);
    }

}

开发服务  Services

Services项目也是类库项目,该项目主要是对Contract的具体实现,同时会调用DAL提供的数据访问层方法。

using

    添加对Lee.Model项目的引用。

    添加对Lee.DAL项目的引用。

    添加对Lee. Contract项目的引用。

我们实现的UserInfo的三个方法中都是返回了Bool值,如果方法返回对象,这时就需要添加对Lee.Model项目的引用。
另,如果要在WCF中传递对象,需要为实体类添加Attribute
 [DataContract]和[Serializable]。属性需要添加Attribute [DataMember]

下面是Lee.Services中的UserInfo 服务类

using  System;
using  System.Collections.Generic;
using  System.Linq;
using  System.Text;

using  Lee.DAL;
using  Lee.Model;
using  Lee.Contract;

namespace  Lee.Services
ExpandedBlockStart.gifContractedBlock.gif
{
    
public class UserInfo:IUserInfo
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
        
/// 添加用户
        
/// </summary>
        
/// <param name="name">用户名称</param>
        
/// <param name="description">用户描述</param>
        
/// <param name="state">状态</param>
        
/// <returns>True-操作成功|False-操作失败</returns>

        public bool AddUserInfo(string name, string description, string state)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            UserInfoDAL dal 
=new UserInfoDAL();
            
return dal.AddUserInfo(name,description,state);
        }

ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
        
/// 检查用户是否存在
        
/// </summary>
        
/// <param name="name">用户名称</param>
        
/// <returns>True-用户存在|False-用户不存在</returns>

        public bool ExistUserInfo(string name)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            UserInfoDAL dal 
=new UserInfoDAL();
            
return dal.ExistUserInfo(name);
        }

ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
        
/// 更新用户信息
        
/// </summary>
        
/// <param name="name">用户名称</param>
        
/// <param name="description">用户描述</param>
        
/// <param name="state">状态</param>
        
/// <returns>True-操作成功|False-操作失败</returns>

        public bool UpdateUserInfo(string name, string description, string state)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            UserInfoDAL dal 
= new UserInfoDAL();
            
return dal.UpdateUserInfo(name, description, state);
        }

    }

}

开发宿主 Hosting

   Hosting项目为WCF服务应用程序,该项目会自动添加对System.Runtime.Serialization和System.ServiceModel的引用。

     using

        添加对Lee. Contract项目的引用。

        添加对Lee. Services项目的引用。

    详细步骤

    1)添加 UserInfo.svc

    2)删除文件 UserInfo.svc.cs;

    3)双击打开 UserInfo.svc

        <%@ ServiceHost Language="C#" Debug="true" Service="Lee.Hosting.UserInfo" CodeBehind="UserInfo.svc.cs" %>

        修改为:

       <%@ ServiceHost Language="C#" Debug="true" Service="Lee.Services.UserInfo" CodeBehind="Lee.Services.UserInfo.cs" %>

    4)修改Web.config;

      

<? xml version="1.0" encoding="utf-8" ?>
< configuration >
  
< connectionStrings >
    
< add  name ="SQLConnection"  connectionString ="Database=XX;User ID=sa;Password=saas;Server=XX;"  providerName ="System.Data.SqlClient" />
  
</ connectionStrings >
  
< system.serviceModel >
    
< serviceHostingEnvironment  aspNetCompatibilityEnabled ="false"   />
    
< services >
      
< service  behaviorConfiguration ="Lee.Hosting.UserInfoBehavior"  name ="Lee.Services.UserInfo" >
        
< endpoint  address =""  binding ="basicHttpBinding"  contract ="Lee.Contract.IUserInfo" >
          
< identity >
            
< dns  value ="localhost"   />
          
</ identity >
        
</ endpoint >
        
< endpoint  address ="webhttp"  behaviorConfiguration ="webHttp"  binding ="webHttpBinding"  contract ="Lee.Contract.IUserInfo" >
          
< identity >
            
< dns  value ="localhost"   />
          
</ identity >
        
</ endpoint >
      
</ service >
    
</ services >
    
< behaviors >
      
< endpointBehaviors >
        
< behavior  name ="webHttp" >
          
< webHttp  />
        
</ behavior >
      
</ endpointBehaviors >
      
< serviceBehaviors >
        
< behavior  name ="Lee.Hosting.UserInfoBehavior" >
          
< serviceMetadata  httpGetEnabled ="true"   />
          
< serviceDebug  includeExceptionDetailInFaults ="true"   />
        
</ behavior >
      
</ serviceBehaviors >
    
</ behaviors >
  
</ system.serviceModel >
  
< system.web >
    
< compilation  debug ="true" />
  
</ system.web >
</ configuration >



    5创建NHibernate配置文件hibernate.cfg.xml并设置为始终复制,添加对NHibernate和NHibernate.ByteCode.Castle的引用。

    6)效果查看

        浏览UserInfo.svc

       

        对应的WSDL

       

        查看Schema格式

    到现在为止,我们已经用WCF成功的对外发布了接口。下面我们对Webservices进行单元测试!

单元测试

    单元测试的相关设置在上一篇已经讲过了,这里不再介绍。

  测试步骤

    1using

        添加对Lee. Contract项目的引用。

    2)添加服务引用,直接点“发现“,可以找到该解决方案下的服务。

   

  成功添加后,会自动在App.Config中创建client端EndPoint。

    3)创建服务测试类TestUserInfoSVC.cs

   

using  System;
using  System.Collections.Generic;
using  System.Linq;
using  System.Text;

using  Lee.Model;
using  Lee.DAL;
using  NUnit.Framework;

namespace  Lee.Test
ExpandedBlockStart.gifContractedBlock.gif
{
    [TestFixture]
    
public class TestUserInfoSVC
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        [Test]
        
public void AddUserInfo()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            UserInfoSVC.UserInfoClient client 
= new Lee.Test.UserInfoSVC.UserInfoClient();
            
bool result = client.AddUserInfo("testname6""testdesc""teststate");
            Assert.AreEqual(
true, result);
        }

        [Test]
        
public void ExistUserInfo()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            UserInfoSVC.UserInfoClient client 
= new Lee.Test.UserInfoSVC.UserInfoClient();
            
bool result = client.ExistUserInfo("testname");
            Assert.AreEqual(
true, result);
        }

        [Test]
        
public void UpdateUserInfo()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            UserInfoSVC.UserInfoClient client 
= new Lee.Test.UserInfoSVC.UserInfoClient();
            
bool result = client.UpdateUserInfo("testname5""hello,testname!""activation");
            Assert.AreEqual(
true, result);
        }

    }

}

    4)可以在方法中设置断点单步调试。

转载于:https://www.cnblogs.com/tenghoo/archive/2009/11/13/NHibernate_WCF_3.html

课程通过实际项目融入常用开发技术架构,讲授风格独特,提供详细上课日志及答疑,赠送配套的项目架构源码注释详细清晰且表达通俗,均能直接在实际项目中应用,正真的物超所值,价格实惠任务作业:综合运用《C#/.Net企业级系统架构设计实战精讲教程》课程所学知识技能设计一个学生成绩管理系统的架构。要求:1.系统基于MVC的层架构,各层单独建不同的解决方案文件夹。2.采用Model First开发方式,设计架构时只需要设计学生表(TbStudent)和课程表(TbCourse)。学生表必须有的字段是ID、stuName、age;课程表必须有的字段是ID、courseName、content。3.数据访问层采用Entity Framework或NHibernate来实现,必须封装对上述表的增删改查方法。4.必须依赖接口编程,也就是必须要有数据访问层的接口层、业务逻辑层的接口层等接口层。层层之间必须减少依赖,可以通过简单工厂或抽象工厂。5.至少采用简单工厂、抽象工厂、Spring.Net等技术中的2种来减少层与层之间的依赖等。6.封装出DbSession类,让它拥有所有Dal层实例和SaveChanges方法。7.设计出数据访问层及业务逻辑层主要类的T4模板,以便实体增加时自动生成相应的类。8.表现层要设计相关的控制器和视图来验证设计的系统架构代码的正确性,必须含有验证增删改查的方法。9.开发平台一定要是Visual Studio平台,采用C#开发语言,数据库为SQL Server。10.提交整个系统架构的源文件及生成的数据库文件。(注意: 作业需写在CSDN博客中,请把作业链接贴在评论区,老师会定期逐个批改~~)
好消息:基于WCF构建企业级大型分布式SOA架构(中级篇)的源码开放下载了,可以向老师索取或者查看最后一个课时下载 下载即可获得如下大礼包:企业级大型分布式SOA框架源码 + 模板网站实践项目源码 + 框架工具、资料 + 初级篇全套源码、视频 学.Net WCF——当架构师 轻松就业 前途无限 掌握高端技术、迈进高收入行列 .Net都是谁在用?——微软、腾讯、网易、戴尔、当当网、携程、招商银行、中国知网、申通快递、房天下、汽车之家等。微软在软件行业的龙头老大位置没有任何人能够否认,它总是站在开发技术的前沿。如今微软正高举.NET大旗继续向前,他正努力使开发变得更加轻松。 学习目标  1、让学员熟练掌握WCF的核心概念及相关编程技能,对WCF技术有一个全面的、深入的、系统的了解;  2、让学员对SOA架构设计的思想和方式具有初步的认识, 对后期我们将要学习的SOA架构有一个宏观的了解;  3、让学员通过完整的示例的学习, 能够熟练搭建开发环境, 服务构建,服务配置,服务调试、服务单元测试, Restful服务的编写, 客户端代理的编写、各种应用程序中消费使用服务等;  4、通过项目实战让学员达到1-3年工作经验水平。达到.NET软件工程师,.Net/C#研发工程师、中高级工程师等岗位所需技能; 课程简介 专注15年C#/.Net开发、科研,在多个中大型企业中负责过多个中大型项目的架构设计、开发、实施部署,积累丰富的研发及实践经验,为Net学习者快速掌握.Net企业级开发常用技术及架构,录制本视频课程系列(分为初级篇,中级篇,高级篇大课程),采用实战项目从0开始一步步讲授如何搭建项目架构及分析各技术的优劣,提供系统/示例完整源码(价值高)及详细上课日志,及时为您解惑答疑,让课程价值无限; 无论您是Java、C++、Python还是其它语言的开发者,都可以学习本系列课程,因为这种架构设计思想和方式对任何语言来说是一样的,只是实现的技术、语言不一样而已;纯干货,含金量高,价格实惠,物超所值 ,配套的项目架构源码等均能直接应用于实际项目开发中;        课程特色        1:课程设计循序渐进,讲解细致,通俗易懂,由浅入深, 非常适合自主学习;        2:以PPT为大纲,教学过程示例丰富,强调技术关键点,并且分析透彻;先概念后示例再应用实践;        3:物美价廉,本着知识共享,帮助更多有需求者原则,毫无保留,此外,提供源代码/示例代码+课程资料+课程相关工具; 本课程示例程序解决方案 SOA架构部署图(中级篇) SOA架构特色(中级篇) SOA架构解决方案(中级篇) 与SOA架构配合开发的Web实战项目解决方案(中级篇) 教学理念        1:把需要工作的人变成工作需要的人;        2:创设立足学员,突出项目,强化技术,提高能力的教学局面; 注意 1.开发环境VS2015、Eclipse、Sql Server 2008R2; 2.赠送配套资料:详细注释的示例项目源码、详实的讲义等; 3.由初级篇—中级篇—高级篇,建议按顺序一节节学习,一节节理解;从而快速实现架构师之梦;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值