wcf-2
1.前言
上一篇,我 们通过VS自带的模板引擎自动生成了一个wcf程序,接下来我们将手动实现一个wcf程序。由于应用程序开发中一般都会涉及到大量的增删改查业务,所以这 个程序将简单演示如何在wcf中构建简单的增删改查服务。我们知道WCF是一组通讯服务框架,我将解决方案按大范围划分为服务端,客户端通过服务寄宿程序 产生的代理来调用服务端的公开给客户端消费的方法。总个解决方案由五个项目工程:
- Service:定义服务契约接口和实现服务契约,此项目类型为类库项目
- Common:通用层定义数据访问的帮助类,此项目类型为类库项目
- Entity:定义数据契约,也就是实体对象,此项目类型为类库项目
- Host:服务寄宿程序,将Service服务程序寄宿在该程序中,此项目类型为控制台应用程序
- Client:客户端程序,实现对服务的消费,此项目类型为web项目
2.实现程序
步骤一:建立数据库
为方便演示操作,我们建立一个简单的表,学生信息(Student),创建的脚本如下(此处我采用的是sql server数据库):
SET ANSI_NULLS ON
GO SET QUOTED_IDENTIFIERON
GO CREATE TABLE[dbo].[Student](
[ID] [int] NOT NULL,
[Name] [nvarchar](50) NULL,
[Age] [int] NULL,
[Grade] [nvarchar](50) NULL,
[Address] [nvarchar](50) NULL,
CONSTRAINT [PK_Student] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
步骤二:建立Common层
新建一个空白解决方案,名称为WcfDemo,创建完成后新增一个类库文件命名为Common,再添加一个数据库访问帮助类DbHelperSQL:代码如下:
using System;
using System.Collections;
using System.Collections.Specialized;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Data.Common;
using System.Collections.Generic; namespace Common
{
public class DbHelperSQL
{
public static string connectionString ="server=.;database=test;uid=sa;pwd=sa123"; public static int ExecuteSql(stringSQLString)
{
using (SqlConnection connection =new SqlConnection(connectionString))
{
using (SqlCommand cmd = newSqlCommand(SQLString, connection))
{
try
{
connection.Open();
int rows =cmd.ExecuteNonQuery();
return rows;
}
catch(System.Data.SqlClient.SqlException e)
{
connection.Close();
throw e;
}
}
}
} public static SqlDataReaderExecuteReader(string strSQL)
{
SqlConnection connection = newSqlConnection(connectionString);
SqlCommand cmd = newSqlCommand(strSQL, connection);
try
{
connection.Open();
SqlDataReader myReader =cmd.ExecuteReader(CommandBehavior.CloseConnection);
return myReader;
}
catch(System.Data.SqlClient.SqlException e)
{
throw e;
} } public static DataSet Query(stringSQLString)
{
using (SqlConnection connection =new SqlConnection(connectionString))
{
DataSet ds = new DataSet();
try
{
connection.Open();
SqlDataAdapter command =new SqlDataAdapter(SQLString, connection);
command.Fill(ds,"ds");
}
catch(System.Data.SqlClient.SqlException ex)
{
throw newException(ex.Message);
}
return ds;
}
} } }
步骤三:建立Entity层
在WcfDemo解决方案上新建一个名称为Entity的类库项目,添加对System.Runtime.Serialization的引用,创建服务的数据契约。新增Student类,代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization; namespace Entity
{
[DataContract]
public class Student
{
[DataMember]
public int ID { get; set; } [DataMember]
public string Name { get; set; } [DataMember]
public int Age { get; set; } [DataMember]
public string Grade { get; set; } [DataMember]
public string Address { get; set; }
}
}
步骤四:建立Service层
此项目需要对Common和Entity的引用,再添加对System.ServiceModel的引用,以创建服务契约。在该项目中添加IStudent接口,定义服务契约接口,代码如下:
using System.Collections.Generic;
using System.ServiceModel;
using Entity; namespace Service
{
[ServiceContract]
public interface IStudent
{
[OperationContract]
List<Student> GetInfo(stringstrWhere); [OperationContract]
bool Add(Student model); [OperationContract]
bool Update(Student model); [OperationContract]
bool Delete(int id); [OperationContract]
bool Exist(int id);
}
}
再添加EFStudent类,实现对IStudent接口的实现,代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using Common;
using Entity; namespace Service
{
public class EFStudent:IStudent
{
public List<Student>GetInfo(string strWhere)
{
List<Student> listData = newList<Student>();
string strSql = "select * fromstudent";
DataTable dt=DbHelperSQL.Query(strSql).Tables[0];
if (null != dt &&dt.Rows.Count > 0)
{
for (int i = 0; i <dt.Rows.Count; i++)
{
Student model = newStudent();
model.ID =Convert.ToInt32(dt.Rows[i]["ID"]);
model.Name =dt.Rows[i]["Name"].ToString();
model.Age =Convert.ToInt32(dt.Rows[i]["Age"]);
model.Grade =dt.Rows[i]["Grade"].ToString();
model.Address =dt.Rows[i]["Address"].ToString();
listData.Add(model);
}
}
return listData;
} public bool Add(Student model)
{
StringBuilder strSql = newStringBuilder();
strSql.Append(" insert intostudent values ");
strSql.Append(" ( ");
strSql.Append(" " +model.ID + ", ");
strSql.Append(" '" +model.Name + "', ");
strSql.Append(" " +model.Age + ", ");
strSql.Append(" '" +model.Grade + "', ");
strSql.Append(" '" +model.Address + "' ");
strSql.Append(" ) "); int rows =DbHelperSQL.ExecuteSql(strSql.ToString());
if (rows > 0)
{
return true;
}
else
{
return false;
}
} public bool Update(Student model)
{
StringBuilder strSql = newStringBuilder();
strSql.Append(" update studentset ");
strSql.Append(" Name= '"+ model.Name + "', ");
strSql.Append(" Age= " +model.Age + ", ");
strSql.Append(" Grade= '" +model.Grade + "', ");
strSql.Append(" Address='" + model.Address + "' ");
strSql.Append(" WhereID=" + model.ID + " "); int rows =DbHelperSQL.ExecuteSql(strSql.ToString());
if (rows > 0)
{
return true;
}
else
{
return false;
}
} public bool Delete(int id)
{
StringBuilder strSql = new StringBuilder();
strSql.Append(" delete fromstudent where ID=" + id + " ");
int rows =DbHelperSQL.ExecuteSql(strSql.ToString());
if (rows > 0)
{
return true;
}
else
{
return false;
}
} public bool Exist(int id)
{
StringBuilder strSql = newStringBuilder();
strSql.Append(" select ID fromstudent where ID=" + id + " ");
DataTable dt =DbHelperSQL.Query(strSql.ToString()).Tables[0];
if (null != dt &&dt.Rows.Count > 0)
{
return true;
}
else
{
return false;
}
}
}
}
步骤五:建立Host层,对Service进行寄宿
此项目需要对Service项目的引用,并添加对using System.ServiceModel的引用,添加寄宿的服务配置文件App.config,代码如下:
<?xmlversion="1.0"?>
<configuration>
<system.serviceModel>
<services>
<servicename="Service.EFStudent"behaviorConfiguration="EFStudentBehavior">
<host>
<baseAddresses>
<addbaseAddress="http://127.0.0.1:1234/EFStudent/"/>
</baseAddresses>
</host> <endpoint address="" binding="wsHttpBinding"contract="Service.IStudent"/>
<endpoint address="mex"binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services> <behaviors>
<serviceBehaviors>
<behaviorname="EFStudentBehavior">
<serviceMetadatahttpGetEnabled="True"/>
<serviceDebugincludeExceptionDetailInFaults="True"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel> <startup>
<supportedRuntime version="v4.0"sku=".NETFramework,Version=v4.0"/>
</startup>
</configuration>
服务寄宿程序Host的Program.cs的代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using Service; namespace Host
{
class Program
{
static void Main(string[] args)
{
try
{
using (ServiceHost host = newServiceHost(typeof(EFStudent)))
{
host.Opened += delegate
{
Console.WriteLine("StudentService已经启动,按任意键终止!");
}; host.Open();
Console.Read();
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
Console.ReadLine();
}
}
}
}
此时,可以编译程序,找到Host项目生成目录,运行Host.exe,就可以对服务进行寄宿,如果寄宿成功,在浏览器中输入http://127.0.0.1:1234/EFStudent地址,就可以看到如下图所示页面:
步骤六:建立Web客户端
新建一个空Client的Web引用程序,添加对服务的引用,输入刚才在浏览器中输入的地址,然后点击发现前往按钮就可以发现服务了,点击确定添加对服务的引用,vs会自动生成对服务的应用配置文件和代理类,如果需要手动生成,可以参考WCF初探—1:认识wcf。添加MainForm.aspx页面,前端代码如下:
<%@ PageLanguage="C#" AutoEventWireup="true"CodeBehind="MainForm.aspx.cs"EnableEventValidation="false" Inherits="Client.MainForm" %> <!DOCTYPE htmlPUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml">
<headrunat="server">
<title></title>
<scripttype="text/javascript">
var prevselitem = null;
function selectx(row) {
if (prevselitem != null) {
prevselitem.style.backgroundColor = '#ffffff';
}
row.style.backgroundColor ='PeachPuff';
prevselitem = row; }
</script>
</head>
<body>
<form id="form1"runat="server">
<asp:GridView ID="GridView1"runat="server" AutoGenerateColumns="False"
onrowdeleting="GridView1_RowDeleting"
onrowdatabound="GridView1_RowDataBound"
onrowcommand="GridView1_RowCommand">
<Columns>
<asp:TemplateFieldHeaderText="编号">
<ItemTemplate>
<asp:LabelID="lbl_id" runat="server" Text='<%#Bind("ID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundFieldDataField="Name" HeaderText="姓名" />
<asp:BoundField DataField="Age"HeaderText="年龄"/>
<asp:BoundFieldDataField="Grade" HeaderText="年级" />
<asp:BoundFieldDataField="Address" HeaderText="家庭地址" />
<asp:CommandFieldHeaderText="删除"ShowDeleteButton="True" />
<asp:TemplateFieldHeaderText="编辑">
<ItemTemplate>
<asp:LinkButtonID="lbtID"
CommandName="lbtn" runat="server"ForeColor="Blue" Text="编辑">
</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView> <p>编号<asp:TextBox ID="txt_id"runat="server"></asp:TextBox></p>
<p>姓名<asp:TextBox ID="txt_name"runat="server"></asp:TextBox></p>
<p>年龄<asp:TextBox ID="txt_age"runat="server"></asp:TextBox></p>
<p>年级<asp:TextBox ID="txt_grade"runat="server"></asp:TextBox></p>
<p>家庭地址<asp:TextBox ID="txt_address"runat="server"></asp:TextBox></p>
<asp:Button ID="btnAdd"runat="server" Text="保存" onclick="btnAdd_Click" />
</form> </body>
</html>
后台代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Client.ServiceReference; namespace Client
{
public partial class MainForm :System.Web.UI.Page
{
StudentClient proxy = newStudentClient();
protected void Page_Load(object sender,EventArgs e)
{
if (!Page.IsPostBack)
{
BindData();
}
} private void BindData()
{
Student[] listData =proxy.GetInfo("");
this.GridView1.DataSource =listData.ToList();
this.GridView1.DataBind();
} protected void btnAdd_Click(objectsender, EventArgs e)
{
Student model = new Student();
model.ID =Convert.ToInt32(this.txt_id.Text);
model.Name = this.txt_name.Text;
model.Age =Convert.ToInt32(this.txt_age.Text);
model.Grade = this.txt_grade.Text;
model.Address =this.txt_address.Text;
if (proxy.Exist(model.ID))
{
proxy.Update(model);
}
else
{
proxy.Add(model);
} BindData();
} protected voidGridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{ int id =Convert.ToInt16(((GridView1.Rows[e.RowIndex].FindControl("lbl_id") asLabel).Text));
bool flag = proxy.Delete(id);
if (flag)
{
Response.Write("<Script>alert(' 删除成功!')</Script> ");
BindData();
}
else
{
Response.Write("<Script>alert(' 删除失败!')</Script> ");
}
} protected voidGridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType ==DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", e.Row.ClientID.ToString() +".checked=true;selectx(this)");//点击行变色 }
} protected voidGridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName =="lbtn")
{
GridViewRow gvrow =(GridViewRow)(((LinkButton)e.CommandSource).NamingContainer); //获取被点击的linkButton所在的GridViewRow
int index =gvrow.RowIndex; //获取到行索引 RowIndex this.txt_id.Text =(GridView1.Rows[index].Cells[0].FindControl("lbl_id") asLabel).Text.Trim();
this.txt_name.Text=GridView1.Rows[index].Cells[1].Text.Trim();
this.txt_age.Text =GridView1.Rows[index].Cells[2].Text.Trim();
this.txt_grade.Text =GridView1.Rows[index].Cells[3].Text.Trim();
this.txt_address.Text =GridView1.Rows[index].Cells[4].Text.Trim(); }
} }
到此,我们完成了一个手动编写的WCF程序,我没有讲太多的原理,这个在网络上可以搜索到很多对概念的解释,我这个以实际操作为准,对平时学习的一个积累,如有不当之处,欢迎指出,共同学习进步。
wcf-2的更多相关文章
- WCF学习之旅—第三个示例之四(三十)
上接WCF学习之旅—第三个示例之一(二十七) WCF学习之旅—第三个示例之二(二十八) WCF学习之旅—第三个示例之三(二十九) ...
- 【WCF】使用“用户名/密码”验证的合理方法
我不敢说俺的方法是最佳方案,反正这世界上很多东西都是变动的,正像老子所说的——“反(返)者,道之动”.以往看到有些文章中说,为每个客户端安装证书嫌麻烦,就直接采用把用户名和密码塞在SOAP头中发送,然 ...
- 【WCF】错误协定声明
在上一篇烂文中,老周给大伙伴们介绍了 IErrorHandler 接口的使用,今天,老周补充一个错误处理的知识点——错误协定. 错误协定与IErrorHandler接口不同,大伙伴们应该记得,上回我们 ...
- 【WCF】自定义错误处理(IErrorHandler接口的用法)
当被调用的服务操作发生异常时,可以直接把异常的原始内容传回给客户端.在WCF中,服务器传回客户端的异常,通常会使用 FaultException,该异常由这么几个东东组成: 1.Action:在服务调 ...
- [WCF]缺少一行代码引发的血案
这是今天作项目支持的发现的一个关于WCF的问题,虽然最终我只是添加了一行代码就解决了这个问题,但是整个纠错过程是痛苦的,甚至最终发现这个问题都具有偶然性.具体来说,这是一个关于如何自动为服务接口(契约 ...
- 【原创经验分享】WCF之消息队列
最近都在鼓捣这个WCF,因为看到说WCF比WebService功能要强大许多,另外也看了一些公司的招聘信息,貌似一些中.高级的程序员招聘,都有提及到WCF这一块,所以,自己也关心关心一下,虽然目前工作 ...
- Ajax使用WCF实现小票pos机打印源码
通过ajax跨域方式调用WCF服务,实现小票pos机的打印,源码提供web方式,客户端方式测试,服务驻留右侧底部任务栏,可控制服务开启暂停,用户可自定义小票打印模板,配合零售录入. qq 22945 ...
- C# 用SoapUI调试WCF服务接口(WCF中包含用户名密码的验证)
问题描述: 一般调试wcf程序可以直接建一个单元测试,直接调接口. 但是,这次,我还要测试在接口内的代码中看接收到的用户名密码是否正确,所以,单一的直接调用接口方法行不通, 然后就想办法通过soapU ...
- WCF基础
初入职场,开始接触C#,开始接触WCF,那么从头开始学习吧,边学边补充. SOA Service-Oriented Architecture,面向服务架构,粗粒度.开放式.松耦合的服务结构,将应用程序 ...
- Mono下的WCF的Bug?
最近一段时间,一直在折腾Mono,折腾Linux.让我无比痛苦的是Mono下的WCF的坑真的是太多了,这不又遇到了一个莫名其妙的问题. 环境:mono 3.2.1,Jexus 5.4.3,OS Cen ...
随机推荐
- C# 判断两张图片是否一致的快速方法
#region 判断图片是否一致 /// <summary> /// 判断图片是否一致 /// </summary> /// <param name="img& ...
- linux tmp75 /dev/i2c-* 获取数据 demo
/********************************************************************** * linux tmp75 /dev/i2c-* 获取数 ...
- apache开源项目--HttpComponents
HttpComponents 也就是以前的httpclient项目,可以用来提供高效的.最新的.功能丰富的支持 HTTP 协议的客户端/服务器编程工具包,并且它支持 HTTP 协议最新的版本和建议.不 ...
- vmware 虚拟机 mount :no medium found解决方法
使用vmware时,在虚拟机设置里,设置CD/DVD为系统镜像,挂载时,有时会有找不到介质或者no medium found之类的提示.根本原因是iso镜像并没有加载到虚拟机系统内.解决办法: 首先确 ...
- MD5加密帮助类
using System; using System.Collections.Generic; using System.Text; namespace AIMSCommon { /// <su ...
- pattern目录
pattern目录 1.创建型模式 JDK1.5枚举Singleton 单例模式 AbstractFactory 工厂方法模式 简单工厂模式 Builder Prototype 2.结构 ...
- jquery日历datepicker的使用方法
jquery.ui.datepicker.js 用法: http://blog.csdn.net/zb0567/article/details/7906238 原文 http://blog.cs ...
- google学术反向代理及IPV6免流量上网【教育网BUPT】
google反向代理 google https://awk.so/ 学术反向代理 https://awk.so/scholar/?hl=zh-CN 2015年1.1号开始流量计费,2元/G 无VPS用 ...
- 交易策略研究 R库
本文在Creative Commons许可证下发布 交易策略研究 R库,直接安装:xts, TTR,quantmod,RTAQ,PerformanceAnalytics,FactorAnalytics ...
- POJ 2986 A Triangle and a Circle 圆与三角形的公共面积
计算几何模板 #include<stdio.h> #include<string.h> #include<stdlib.h> #include<math.h& ...