那天有个小孩教我WCF[一][2/3]
接着上次的继续讲吧
我们开始吧
9.创建数据库
use mastergo--创建库if exists(select * from sysdatabases where name='NewsDB')drop database NewsDBcreate database NewsDBon primary(name='NewsDB_data',filename='D:\NewsDB_data.mdf',filegrowth=30%,size=5)log on(name='NewsDB_log',filename='D:\NewsDB_log.ldf',size=2,filegrowth=10%)go--创建表Newsuse NewsDBgoif exists(select * from sysobjects where name='News')drop table Newscreate table News(NewsID int identity(1,1) primary key,NewsTitle nvarchar(50) not null,Content nvarchar(max) not null,NewsType int not null,publishTime datetime not null,LastUpdateTime datetime not null,Author nvarchar(20) not null,LastAuthor nvarchar(20) not null,ReadCount int not null)
10. 添加Linq to SQL文件
11. 实现服务
11.1 修改NewsTypeEnum枚举文件
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.Serialization;namespace NewsInterface{[DataContract]public enum NewsTypeEnum{[EnumMember]Sports=1,[EnumMember]IT=2,[EnumMember]Country=3,[EnumMember]Funny=4}}
11.2 在D盘放一张 1.jpg图片作为测试用
1.jpg
11.3 打开NewsImpl.cs文件,实现服务
修改NewsDto,添加NewsID属性
NewsImpl.cs代码实现大致如下
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.Serialization;using System.ServiceModel;using NewsInterface;using System.IO;namespace NewsServices{public class NewsImpl:INewsInterface{public int NewsAdd(NewsDto dto){Console.WriteLine("添加中...");using (NewsDataContext db=new NewsDataContext()){News news = new News();news.Author=dto.Author;news.Content=dto.Content;news.LastAuthor=dto.LastAuthor;news.LastUpdateTime=dto.LastUpdateTime;news.NewsType=dto.NewsType.GetHashCode();news.publishTime = dto.publishTime;news.ReadCount = dto.ReadCount;news.NewsTitle = dto.NewsTitle;db.News.InsertOnSubmit(news);db.SubmitChanges();Console.WriteLine("添加成功!");return news.NewsID;}}public bool NewsDelete(NewsDto dto){Console.WriteLine("删除中...");using (NewsDataContext db = new NewsDataContext()){try{News model = db.News.FirstOrDefault(x => x.NewsID == dto.NewsID);db.News.DeleteOnSubmit(model);db.SubmitChanges();Console.WriteLine("删除成功");return true;}catch{return false;}}}public bool NewsUpdate(NewsDto dto){throw new NotImplementedException();}public List<NewsDto> NewsList(){Console.WriteLine("请求获得新闻列表");using (NewsDataContext db = new NewsDataContext()){var d=from o in db.Newsselect new NewsDto{Author=o.Author,LastAuthor=o.LastAuthor,LastUpdateTime=o.LastUpdateTime,NewsID=o.NewsID,Content=o.Content,NewsTitle=o.NewsTitle,publishTime=o.publishTime,ReadCount=o.ReadCount};return d.ToList<NewsDto>();}}public byte[] GetNewsImage(string Id){Console.WriteLine("开始获得图片:"+Id+"...");byte[] buff;string path = @"D:\1.jpg";FileStream fileStream = new FileStream(path, FileMode.Open, FileAccess.Read);BinaryReader br = new BinaryReader(fileStream);buff = br.ReadBytes((int)fileStream.Length);Console.WriteLine("获取成功!");return buff;}}}
这里修改我没有去实现,感兴趣自己可以实现
LINQ to SQL如果不会的,可以 点击学习 那天有个小孩跟我说LINQ
11.4 重新生成解决方案,编译程序
12. 公开元数据
现在可以通过添加配置来托管服务了,并公开元数据。公开元数据之后,Visual Studio就可以下载WSDL文件,创建所需要的代理了。我们后期会教大家创建代理的其他方式
现在用WCF配置编辑器打开NewsHosts应用程序的配置文件App.config
新建服务行为的名称 ExposeMetaDataBehavior
元数据发布地址 http://localhost:1234/NewsService/Mex
下面具体配置一下
配置完成后App.config
配置成功后,将HOST设为启动项目,运行项目,打开浏览器输入
http://localhost:1234/NewsService/Mex
效果如果是这样子的,说明 成功的
13. 创建 NewsApplication客户端,我们使用Winform
窗体,我改成这样子了,上面的蓝色文字用于说明
最重要的一步,添加服务
先不用VS运行宿主
我们手动打开Debug文件夹下的 NewsHosts.exe
接下来看我演示一下
我们最后注释掉 identity节点,是为了方便测试
14 实现Winform后面的方法
14.1 添加
private void button1_Click(object sender, EventArgs e){try{NewsService.NewsInterfaceClient client = new NewsService.NewsInterfaceClient();NewsService.NewsDto dto = new NewsService.NewsDto();dto.Author = "杨洋";dto.LastAuthor = "AaronYang";dto.publishTime = DateTime.Now;dto.LastUpdateTime = DateTime.Now;dto.NewsTitle = "测试标题:" + new Random().Next(10000).ToString();dto.Content = "测试内容" + new Random().Next(10000).ToString();dto.NewsType = NewsService.NewsTypeEnum.Country;dto.ReadCount = 0;MessageBox.Show("添加成功!成功后的ID为"+client.NewsAdd(dto).ToString());}catch (Exception ex){richTextBox1.Text += Environment.NewLine + ex.Message;}}
14.2 获得新闻列表
private void button2_Click(object sender, EventArgs e){try{NewsService.NewsInterfaceClient client = new NewsService.NewsInterfaceClient();List<NewsService.NewsDto> list = client.NewsList();foreach (NewsService.NewsDto item in list){listBox1.Items.Add("标题:"+item.NewsTitle+"\t发布时间:"+item.publishTime.ToShortDateString());}}catch (Exception ex){richTextBox1.Text += Environment.NewLine + ex.Message;}}
14.3 获得图片并显示
private void button3_Click(object sender, EventArgs e){try{NewsService.NewsInterfaceClient client = new NewsService.NewsInterfaceClient();byte[] buff=client.GetNewsImage("1");TypeConverter converter = TypeDescriptor.GetConverter(typeof(Bitmap));Bitmap bitmap = (Bitmap)converter.ConvertFrom(buff);pictureBox1.Image = bitmap;}catch (Exception ex){richTextBox1.Text += Environment.NewLine + ex.Message;}}
14.4 有的图片可能过大,可能响应的时候图片太大就不能显示了,我们需要修改宿主的WCF的配置
我们配置一下终结点(Endpoint)的绑定配置,名称就是 上面的<binding name=”这里的名字”>
我们还需要修改客户端的配置,使它可以接受超大的消息
打开NewsApplication的app.config文件
15.设置两个启动项目,运行查看效果
先生成解决方案,然后我们设置一下
效果图:
关于 获得列表,还有点问题
下次调,我再解决一下
关于NewsDto中我最后不是添加了一个NewsID吗,我没有添加DataMember属性,但是添加上去,似乎还是没有用,有人知道怎么解决吗
我把代码上传一下了,希望有人能棒棒我,感谢万分。 代码下载
这个是错误信息
接收对 http://localhost:1234/NewsMgr 的 HTTP 响应时发生错误。这可能是由于服务终结点绑定未使用 HTTP 协议造成的。这还可能是由于服务器中止了 HTTP 请求上下文(可能由于服务关闭)所致。有关详细信息,请参见服务器日志。
时间不早了,我先睡觉了,大家晚安
那天有个小孩教我WCF[一][2/3]的更多相关文章
- 那天有个小孩教我WCF[一][1/3]
那天有个小孩教我WCF[一][1/3] 既然是小孩系列,当然要有一点基础才能快速掌握,归纳,总结的一个系列,哈哈 前言: 第一篇嘛,不细讲,步步教你创建一个简单SOA案例,对WCF有个基本的认识,我不 ...
- (转)那天有个小孩教我WCF[一][1/3]
原文地址:http://www.cnblogs.com/AaronYang/p/2950931.html 既然是小孩系列,当然要有一点基础才能快速掌握,归纳,总结的一个系列,哈哈 前言: 第一篇嘛,不 ...
- WCF系列教程之WCF服务协定
本文参考自:http://www.cnblogs.com/wangweimutou/p/4422883.html,纯属读书笔记,加深记忆 一.服务协定简介: 1.WCF所有的服务协定层里面的服务接口, ...
- WCF系列教程之WCF服务宿主与WCF服务部署
本文参考自http://www.cnblogs.com/wangweimutou/p/4377062.html,纯属读书笔记,加深记忆. 一.简介 任何一个程序的运行都需要依赖一个确定的进程中,WCF ...
- 那天有个小孩跟我说LINQ(五)转载
2 LINQ TO SQL(代码下载) 我们以一个简单的销售的业务数据库为例子 表结构很简单:Users(购买者(用户)表),Products(产品信息表),Sales(销 ...
- WCF系列教程之WCF服务配置工具
本文参考自http://www.cnblogs.com/wangweimutou/p/4367905.html Visual studio 针对服务配置提供了一个可视化的配置界面(Microsoft ...
- WCF系列教程之WCF实例化
本文参考自http://www.cnblogs.com/wangweimutou/p/4517951.html,纯属读书笔记,加深记忆 一.理解WCF实例化机制 1.WCF实例化,是指对用户定义的服务 ...
- WCF系列教程之WCF中的会话
本文参考自http://www.cnblogs.com/wangweimutou/p/4516224.html,纯属读书笔记,加深记忆 一.WCF会话简介 1.在WCF应用程序中,回话将一组消息相互关 ...
- WCF系列教程之WCF客户端异常处理
本文参考自:http://www.cnblogs.com/wangweimutou/p/4414393.html,纯属读书笔记,加深记忆 一.简介 当我们打开WCF基础客户通道,无论是显示打开还是通过 ...
随机推荐
- [转]notepad++ java编码,输出中文字符时,编译出错
呆在公司中,最近受开发手机app的几个同事影响,想学android的开发,心血来潮,挡也挡不住,说干就干,直接看教程,发现有很多关于java的语法知识不懂,于是又来学java,学习的过程中难免出现问题 ...
- buntu14.04和16.04官方默认更新源sources.list和第三方源推荐(干货!)转
配置完成后: sudo apt-get update 安装和删除软件: sudo apt-get install sudo apt-get remove buntu14.04和16.04官方默认更新源 ...
- 【Java】 剑指offer(47) 礼物的最大价值
本文参考自<剑指offer>一书,代码采用Java语言. 更多:<剑指Offer>Java实现合集 题目 在一个m×n的棋盘的每一格都放有一个礼物,每个礼物都有一定的价值( ...
- Yii1版本下控制台应用的使用
1.前言 很多时候,需要执行脚本任务,这时候,大多数我是不希望打开一个浏览器,输入地址来跑脚本的,这样我感觉很不爽,这时候,Yii1版本也是自带控制台下执行脚本的,具体实现步骤如下: 2.comman ...
- UC浏览器中Ajax请求中传递数据的一个坑
今天突然收到一个bug,有用户在其浏览器环境中一直无法提交内容,使用的是UC浏览器.当换成Chrome时,内容能够正常提交.鉴于本地没有一直使用Firefox 以及Chrome,于是去下载了一个UC ...
- thumbs.db是什么文件
thumbs.db是什么文件 这是图片缓存文件 Thumbs.db文件是一个数据库,里面保存了这个目录下所有图像文件的缩略图(格式为jpeg) thumbs.db删除不掉 反射获取某个类的 所有字段 ...
- loj#2076. 「JSOI2016」炸弹攻击 模拟退火
目录 题目链接 题解 代码 题目链接 loj#2076. 「JSOI2016」炸弹攻击 题解 模拟退火 退火时,由于答案比较小,但是温度比较高 所以在算exp时最好把相差的点数乘以一个常数让选取更差的 ...
- PHP is_numeric 检测变量是否为数字或数字字符串
bool is_numeric ( mixed $var ) 如果 var 是数字和数字字符串则返回 TRUE,否则返回 FALSE. For example 1: <?php $v = is_ ...
- 通过Queue方法实现进程间通信
from multiprocessing import Process,Queue import time def write(q): ): q.put(i) # time.sleep() print ...
- Servlet中的过滤器
在web.xml中配置:(用eclipse工具,可以在创建filter的时选择,web.xml中的配置可以自动生成) <filter> <display-name>LoginF ...