一:截图 二:调用代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WCFwinformTest { public partial class Form1…
一:图片 IService1.cs是定义的接口,包含对Service.方法和方法用的类的声明的声明 Service1.cs是对接口的实现,包含实现的方法 代码注释: using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; namespace WcfServi…
最近项目需要和第三网站进行数据交换,第三方网站基本都是RESTfull形式的API,但是也有的是Web Service,或者.NET里面的WCF.微软鼓励大家使用WCF替代Web Service. Web Service技术介绍 Web Service是一个平台独立的,松耦合的,自包含的.基于可编程的Web应用程序,可使用开发的XML数据标准来描述.发布.发现.协调和配置这些应用程序,同时用于开发分布式的互操作的应用程序. WCF技术介绍 WCF是Web Service的升级版本.WCF是Win…