标签:des blog http io os ar java for sp
本来要定义WebServices 方法返回一泛型接口集合IList,系统提示不能序列化泛型接口集合
参考了相关的资料,可以有两种解决办法,一:用List<>泛型集合替代IList<>泛型接口集合。
二.将List<>泛型集合序列化为二进制形式,进行传递。
客户端反序列化代码
非泛型集合的IList接口进行传递时,只需在方法前标识[XmlInclude(typeof(类型)]即可。
标签:des blog http io os ar java for sp
原文地址:http://www.cnblogs.com/luozhai714/p/4011210.html