解决WebService 中泛型接口不能序列化问题
本来要定义WebServices 方法返回一泛型接口集合IList,系统提示不能序列化泛型接口集合
1 [WebMethod]
2 public IList<Employee> GetEmployeeList()
3 {
4 IFormatter formatter = new SoapFormatter();
5 MemoryStream mStream = new MemoryStream();
6
7 Employee em1 = new Employee();
8 em1.EmployeeID = 1;
9 em1.FirstName = "jack";
10 em1.LastName = "josn";
11 IList<Employee> list = new List<Employee>();
12 list.Add(em1);
13 list.Add(em2);
14 return list;
15
参考了相关的资料,可以有两种解决办法,一:用List<>泛型集合替代IList<>泛型接口集合。
二.将List<>泛型集合序列化为二进制形式,进行传递。
1 /// <summary>
2 /// List泛型集合替代IList
3 /// </summary>
4 /// <returns></returns>
5 [WebMethod]
6 public List<Employee> GetEmployeeList()
7 {
8 IFormatter formatter = new SoapFormatter();
9 MemoryStream mStream = new MemoryStream();
10
11 Employee em1 = new Employee();
12 em1.EmployeeID = 1;
13 em1.FirstName = "jack";
14 em1.LastName = "josn";
15 List<Employee> list = new List<Employee>();
16 list.Add(em1);
17 return list;
18 }
19
20 /// <summary>
21 /// 以二进制形式进行传递,客户端需进行返序列化
22 /// </summary>
23 /// <returns></returns>
24 [WebMethod]
25 public byte[] GetEmployeeListByteArray()
26 {
27 Employee em1 = new Employee();
28 em1.EmployeeID = 1;
29 em1.FirstName = "jack";
30 em1.LastName = "josn";
31 IList<Employee> list = new List<Employee>();
32 list.Add(em1);
33 IFormatter formatter = new BinaryFormatter();
34 MemoryStream mStream = new MemoryStream();
35 byte[] bs;
36 if (list != null)
37 {
38 formatter.Serialize(mStream,list);
39 bs = mStream.ToArray();
40 }
41 else
42 {
43 bs = new byte[0];
44 }
45 return bs;
46
客户端反序列化代码
1 protected void CallService()
2 {
3 WebService ws = new WebService();
4 byte[] bs = ws.GetEmployeeListByteArray();
5 IList<Employee> list = null;
6 try
7 {
8 MemoryStream ms = new MemoryStream(bs); //创建Memory流对象
9 BinaryFormatter formatter = new BinaryFormatter();
10 list = (List<Employee>)formatter.Deserialize(ms); //反序列化
11 }
12 catch (Exception ex)
13 {
14 Response.Write("<script language='javaScript'>alert('"+ex.Message+"');</script>");
15 }
16
非泛型集合的IList接口进行传递时,只需在方法前标识[XmlInclude(typeof(类型)]即可。
1 [WebMethod]
2 [XmlInclude(typeof(Employee))]
3 public IList GetArticleList()
4 {
5 IList result = new ArrayList();
6 for (int i = 0; i < 20; i++)
7 {
8 DateTime time = DateTime.Now.AddDays(i);
9 Employee em = new Employee();
10 em.LastName = "jack";
11 em.EmployeeID = 11;
12 result.Add(em);
13 }
14 return result;
15 }
16
解决WebService 中泛型接口不能序列化问题的更多相关文章
- 解决WebService中System.InvalidOperationException:缺少参数的问题
此问题在.Net 4.0 IIS7 Windows Server 2008下可能会出现. 现象是第一次正常调用,第二次接口报错. 删除CacheDuration即可.
- WebService中方法的重载
阅读目录 一:WebService中的方法是否允许重载? 二:为什么WebService中不支持方法的重载? 三:如何解决WebService中方法的重载? 一:WebService中的方法是否允许重 ...
- WebService中使用自定义类的解决方法(5种)
转自:http://www.cnblogs.com/lxinxuan/archive/2007/05/24/758317.html Demo下载:http://files.cnblogs.com/lx ...
- 解决nodejs中json序列化时Date类型默认为UTC格式
在nodejs中,json序列化时Date类型时,默认转为UTC格式. 如下图 上面只是一个例子,下面我用一个更具体化的例子来展示一个这个情况,我们在开发WEB项目中,经常用到Express组件, 我 ...
- 解决nodejs中json序列化时Date类型为UTC格式
在nodejs中,json序列化时Date类型时,默认转为UTC格式. 如下图 zhupengfei@DESKTOP-HJASOE3 MINGW64 /d/MyProject/exp2 $ node ...
- 处理 WebService 中的 Map 对象
最近,我们讨论了关于 WebService 的相关问题.目前在 Smart 中,可发布两种类型的 WebService,它们是:SOAP 服务 与 REST 服务,您可以根据需要自由选择. 今天,我要 ...
- C# Webservice中如何实现方法重载--(方法名同名时出现的问题)
本文摘抄自:http://blog.sina.com.cn/s/blog_53b720bb0100voh3.html 1.Webservice中的方法重载问题(1)在要重载的WebMethod上打个M ...
- WebService中方法的相关注意事项
2014-11-14 在WebService中定义方法,有一些注意的地方: (1) 方法上面需要增加 [WebMethod] 属性,标志该方法是一个WebService方法: (2)方法的返回值可以为 ...
- 在asp.net webservice中如何使用session
原文:在asp.net webservice中如何使用session 原文:刘武|在asp.net webservice中如何使用session 在使用asp.net编写webservice时,默认情 ...
随机推荐
- Oracle RAC OCR 与健忘症
OCR就好比Windows的一个注册表,存储了所有与集群,RAC数据库相关的配置信息.而且是公用的配置,也就是说多个节点共享相同的配置信息.因此该配置应当存储于共享磁盘.本文主要基于Oracle 10 ...
- Shell教程6-Shell注释
以“#”开头的行就是注释,会被解释器忽略. sh里没有多行注释,只能每一行加一个#号.只能像这样: #-------------------------------------------- # 这是 ...
- 微信支付-JSAPI支付V3-查询退款
接口地址 接口链接:https://api.mch.weixin.qq.com/pay/refundquery 是否需要证书 不需要. 请求参数 字段名 变量名 必填 类型 示例值 描述 公众账号ID ...
- c# is和as的区别
关于类型的判断和转换有is和as这2个操作符.具体区别和用法如下is就是处于对类型的判断.返回true和false.如果一个对象是某个类型或是其父类型的话就返回为true,否则的话就会返回为false ...
- Visual Assist的破解与安装
转载[PYG成员作品] [2016-09-26更新]Visual Assist X10.9.2112-Cracked.By.PiaoYun/P.Y.G 近期的一个稳定版本的破解方式: VA原版, VA ...
- 【Leetcode】Evaluate Reverse Polish Notation JAVA
一.问题描述 Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators ...
- C# 使用Linq递归查询数据库遇到的问题及解决方法
User表通常是我们在写"XX管理系统"项目时必须要用到的,有的情况下人员的分类属于树形结构,就是除了最高层和最低层,中间层都有相对的父和子,设计数据库的时候,我们通常会加一个pa ...
- python中隐式的内存共享
在python中,基本上使用的是引用,那么就会造成一个隐式的内存共享,特别是在容器对象中,例如list,dictionary 对于不可变对象,是不会造成隐式的内存共享情况,如下所示: >> ...
- KMP算法的代码实现
上周算法班的BEN老师花了1个小时讲自动机和KMP的关系,结果failed...明天又要上课了,花了半天时间看了下KMP,暂且停留在利用next求模式中的跳跃长度,自动机那个还不能理解... 具体的可 ...
- bzoj 1492 [NOI2007]货币兑换Cash(斜率dp+cdq分治)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=1492 [题意] 有AB两种货币,每天可以可以付IPi元,买到A券和B券,且A:B= ...