WCF接口实例介绍
Windows Communication Foundation(WCF)是由微软开发的一系列支持数据通信的应用程序框架,可以翻译为Windows 通讯开发平台。
WCF整合了原有的windows通讯的 .net Remoting,WebService,Socket的机制,并融合有HTTP和FTP的相关技术。
简单的归结为四大部分
1>.网络服务的协议,即用什么网络协议开放客户端接入。
2>.业务服务的协议,即声明服务提供哪些业务。
3>.数据类型声明,即对客户端与服务器端通信的数据部分进行一致化。
4>.传输安全性相关的定义。
下面直接看一个例子:
一.服务端实例
1.定义一个WCF接口名称未Ichangeline
服务契约(ServiceContract),订定服务的定义。
// 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的接口名“IStaffLoginCheckService”。
[ServiceContract] //服务协定定义
public interface IChangeline
{
[OperationContract] // 操作服务定义
string EsopCheckOk();
[OperationContract]
string HelloWorld();
}
2.定义一个类实现接口名称Changeline
// 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的类名“StaffLoginCheckService”。
[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Single, InstanceContextMode = InstanceContextMode.Single)]
public class Changeline : IChangeline
{
public string HelloWorld()
{
string result = "123456";
return result;
}
}
3.开通WCF所需要的服务,也可以从VS直接添加WCF服务
#region 启动WCF服务
private void OpenWcfService()
{
try
{
var changeline = new Changeline(bendview);
host = new ServiceHost(changeline, new Uri("http://localhost:8734/MyService/"));
//这是我们服务的地址
host.AddServiceEndpoint(typeof(IChangeline), new BasicHttpBinding(), string.Empty);
host.Description.Behaviors.Add(new ServiceMetadataBehavior { HttpGetEnabled = true });
//mex元数据的地址
host.AddServiceEndpoint(typeof(IMetadataExchange), MetadataExchangeBindings.CreateMexHttpBinding(),
"mex");
host.Open();
var port = ""; //获取端口号
var inname = "Changeline"; //打开端口号的名称
var str = " netsh advfirewall firewall add rule name=" + inname +
" dir=in action=allow protocol=TCP localport= " + port;
var pro = new Process(); //实例化进程
pro.StartInfo.FileName = "cmd.exe"; //设置要运行的程序文件
pro.StartInfo.UseShellExecute = false; //是否使用操作系统shell程序启动
pro.StartInfo.RedirectStandardInput = true; //是否接受来自应用程序的调用
pro.StartInfo.RedirectStandardOutput = true; //是否接受来自应用程序的输出信息
pro.StartInfo.RedirectStandardError = true; //是否接受重定向错误信息
pro.StartInfo.CreateNoWindow = true; //不显示窗口信息
pro.Start(); //启动程序 //向cmd窗口发送输入信息
pro.StandardInput.WriteLine(str + "&exit"); pro.StandardInput.AutoFlush = true;
pro.WaitForExit(); //等待程序运行完退出程序
pro.Close(); //关闭进程
}
catch (Exception ex)
{
Tool.Log.Error("WCF开起失败:" + ex.Message);
}
CheckWCFServerTh = new Thread(WCF_HostCheck);
CheckWCFServerTh.IsBackground = true;
CheckWCFServerTh.Start();
}
void WCF_HostCheck(object o)
{
//Closed 指示通信对象已关闭,且不再可用。
//Closing 指示通信对象正转换到 Closed 状态。
//Created 指示通信对象已实例化且可配置,但尚未打开或无法使用。
//Faulted 指示通信对象发生错误,无法恢复且不再可用。
//Opened 指示通信对象目前已打开,且随时可供使用。
//Opening 指示通信对象正从 Created 状态转换到 Opened 状态。
while (true)
{
try
{
if (!(host.State == CommunicationState.Opened || host.State == CommunicationState.Opening))
{
var changeline = new Changeline(bendview);
host = new ServiceHost(changeline, new Uri("http://localhost:8734/MyService/"));
//这是我们服务的地址
host.AddServiceEndpoint(typeof(IChangeline), new BasicHttpBinding(), string.Empty);
host.Description.Behaviors.Add(new ServiceMetadataBehavior { HttpGetEnabled = true });
//mex元数据的地址
host.AddServiceEndpoint(typeof(IMetadataExchange), MetadataExchangeBindings.CreateMexHttpBinding(),
"mex");
host.Open(); var port = ""; //获取端口号
var inname = "Changeline"; //打开端口号的名称
var str = " netsh advfirewall firewall add rule name=" + inname +
" dir=in action=allow protocol=TCP localport= " + port;
var pro = new Process(); //实例化进程
pro.StartInfo.FileName = "cmd.exe"; //设置要运行的程序文件
pro.StartInfo.UseShellExecute = false; //是否使用操作系统shell程序启动
pro.StartInfo.RedirectStandardInput = true; //是否接受来自应用程序的调用
pro.StartInfo.RedirectStandardOutput = true; //是否接受来自应用程序的输出信息
pro.StartInfo.RedirectStandardError = true; //是否接受重定向错误信息
pro.StartInfo.CreateNoWindow = true; //不显示窗口信息
pro.Start(); //启动程序
//向cmd窗口发送输入信息
pro.StandardInput.WriteLine(str + "&exit");
pro.StandardInput.AutoFlush = true;
pro.WaitForExit(); //等待程序运行完退出程序
pro.Close(); //关闭进程
}
}
catch (Exception ex)
{
Tool.Log.Error("WCF开起失败:" + ex.Message);
}
Thread.Sleep();
}
}
#endregion
二.客户端的程序
1.配置好通道工厂,为客户端创立独立通道,为获取接口配置程序可以创建一个类(WcfChannelFactory)
/// <summary>
/// 使用ChannelFactory为wcf客户端创建独立通道
/// </summary>
public class WcfChannelFactory
{
public WcfChannelFactory()
{
} /// <summary>
/// 执行方法 WSHttpBinding
/// </summary>
/// <typeparam name="T">服务接口</typeparam>
/// <param name="uri">wcf地址</param>
/// <param name="methodName">方法名</param>
/// <param name="args">参数列表</param>
public static object ExecuteMetod<T>(string uri, string methodName, params object[] args)
{
//BasicHttpBinding binding = new BasicHttpBinding();
WSHttpBinding binding = new WSHttpBinding();
EndpointAddress endpoint = new EndpointAddress(uri); using (ChannelFactory<T> channelFactory = new ChannelFactory<T>(binding, endpoint))
{
T instance = channelFactory.CreateChannel();
using (instance as IDisposable)
{
try
{
Type type = typeof(T);
MethodInfo mi = type.GetMethod(methodName);
return mi.Invoke(instance, args);
}
catch (TimeoutException)
{
(instance as ICommunicationObject).Abort();
throw;
}
catch (CommunicationException)
{
(instance as ICommunicationObject).Abort();
throw;
}
catch (Exception vErr)
{
(instance as ICommunicationObject).Abort();
throw;
}
}
}
} //nettcpbinding 绑定方式
public static object ExecuteMethod<T>(string pUrl, string pMethodName,params object[] pParams)
{
EndpointAddress address = new EndpointAddress(pUrl);
Binding bindinginstance = null;
BasicHttpBinding ws = new BasicHttpBinding();
ws.MaxReceivedMessageSize = ;
bindinginstance = ws;
using (ChannelFactory<T> channel = new ChannelFactory<T>(bindinginstance, address))
{
T instance = channel.CreateChannel();
using (instance as IDisposable)
{
try
{
Type type = typeof(T);
MethodInfo mi = type.GetMethod(pMethodName);
return mi.Invoke(instance, pParams);
}
catch (TimeoutException)
{
(instance as ICommunicationObject).Abort();
throw;
}
catch (CommunicationException)
{
(instance as ICommunicationObject).Abort();
throw;
}
catch (Exception vErr)
{
(instance as ICommunicationObject).Abort();
throw;
}
}
}
}
}
2.调用WcfChannelFactory,获取接口数据
调用时需要把服务端开的接口添加到本程序中,
public void Statedeal()
{
try
{ string result = WcfChannelFactory.ExecuteMethod<IChangeline>("http://localhost:8734/MyService/", "EsopCheckOk").ToString(); MessageBox.Show(result.ToString());
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString()); }
}
此时整个的服务端与客户端都可以实现了,如果客户端程序中也含有wcf服务程序(也会发布WCF服务,也作为服务端),并且接口名称与服务端(本客户端的服务端)的接口名称相同,那就必须保证服务端提供的接口名称与客户端定义的接口名称不同,或者相同名称在不同的程序集下。
WCF接口实例介绍的更多相关文章
- WCF分布式开发步步为赢(9):WCF服务实例激活类型编程与开发
.Net Remoting的激活方式也有三种:SingleTon模式.SingleCall模式.客户端激活方式,WCF服务实例激活类型包括三种方式:单调服务(Call Service),会话服务(Se ...
- 【转】Web Service单元测试工具实例介绍之SoapUI
转自:http://blog.csdn.net/oracle_microsoft/article/details/5689585 SoapUI 是当前比较简单实用的开源Web Service 测试工具 ...
- osg实例介绍
osg实例介绍 转自:http://blog.csdn.net/yungis/article/list/1 [原]osgmotionblur例子 该例子演示了运动模糊的效果.一下内容是转自网上的:原理 ...
- tcpdump wireshark 实用过滤表达式(针对ip、协议、端口、长度和内容) 实例介绍
tcpdump wireshark 实用过滤表达式(针对ip.协议.端口.长度和内容) 实例介绍 标签: 网络tcpdst工具windowslinux 2012-05-15 18:12 3777人阅读 ...
- Web Service单元测试工具实例介绍之SoapUI
原文 Web Service单元测试工具实例介绍之SoapUI SoapUI是当前比较简单实用的开源Web Service测试工具,提供桌面应用程序和IDE插件程序两种使用方式.能够快速构建项目和组 ...
- WCF小实例以及三种宿主
WCF小实例以及三种宿主 最近一直在学习WCF相关知识,下面将通过一个小实例对所学的知识进行简单的回顾:本实例是一个简单三层操作数据库,并且也简单实现的三种宿主(控制台宿主,IIS宿主以及Window ...
- 转载:kafka c接口librdkafka介绍之二:生产者接口
转载:from:http://www.verydemo.com/demo_c92_i210679.html 这个程序虽然我调试过,也分析过,但是没有记录笔记,发现下边这篇文章分析直接透彻,拿来借用,聊 ...
- Spring IOC(通过实例介绍,属性与构造方法注入)
概括说明:下面通过实例介绍下属性方法注入.构造方法注入 1.源码结构图 2.代码介绍 (1).Dao接口 :UserDAO (2).Dao接口实现:UserDAOImpl (3).实体类:User ( ...
- 引擎基本服务接口API介绍
Slickflow.NET 开源工作流引擎基础介绍(一) -- 引擎基本服务接口API介绍 https://www.cnblogs.com/slickflow/p/4807227.html 工作流术语 ...
随机推荐
- 哈希与字典树与KMP
hash讲解 主要记录hash的公式: ; i<=len; i++) { Hash[i]=(Hash[i-]*)%mod)%mod; } 求hash的公式是这个,怎么求一小段的hash值呢? ; ...
- 兼容ie透明书写
filter:alpha(opacity=0); opacity:0;filter:alpha(opacity=70); opacity:0.7;
- poj--2299(树状数组+离散化)
一.离散化: https://www.cnblogs.com/2018zxy/p/10104393.html 二.逆序数 AC代码: #include<iostream> #include ...
- 3-具体学习git--reset回到过去的版本(commit间穿梭),checkout单个文件穿梭
git log --oneline 命令可以在一块儿显示做过的改动. 我在change 2时忘了一条,想在change 1后再添加一个语句或一个操作,然后这个状态再提交仍作为change 2.将这个s ...
- oracle学习笔记一:用户管理(3)用户口令管理
当某个用户不断的尝试密码进行登录数据库是很危险的,因此对密码(口令)的管理十分重要.好在我们可以限制登录次数,超过某些次数的登录将会把用户锁住,隔一段时间才允许其登录,这和你的手机是不是有点一样,你的 ...
- new命令简化的内部流程
构造函数返回对象的一些问题: function fn(name,age){ this.name = name; this.age = age; //return 23; 忽略数字,直接返回原有对象 / ...
- ActiveMQ -5.9和jms-1.1源码下载
ActiveMQ-5.9和jms-1.1源码下载:见附件
- php大文件下载支持断点续传
<?php /** php下载类,支持断点续传 * * Func: * download: 下载文件 * setSpeed: 设置下载速度 * getRange: ...
- noip2017d1t3
其实是参考洛谷上某篇题解的思路: 先求出两个dis数组表示从1走和从n走的最短路: 转移方程:dp[v][dis1[u]-dis1[v]+w+j]+=dp[u][j]; 转移顺序要注意一下呢,肯定是先 ...
- c++ cout、<< 、cin、>> 、endl 详解
std::cout是在#include<iostream>库中的ostream类型中的对象 std::表示命名空间,标准库定义的所有名字都在命名空间std中 std::cout是在#inc ...