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 工作流术语 ...
随机推荐
- jrebel
jrebel 编辑 JRebel是一套JavaEE开发工具.JRebel允许开发团队在有限的时间内完成更多的任务修正更多的问题,发布更高质量的软件产品. JRebel是收费软件,用户可以在JReb ...
- js 正则表达式,匹配邮箱/手机号/用户名
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...
- ubuntu安装rubyOnRails
https://gorails.com/setup/ubuntu/16.04#ruby-rbenv 文章很详细
- 使用thymeleaf一旦没有闭合标签就会报错怎么解决
问题:input标签未关闭报bug,代码稍有不慎就出小问题 使用springboot的thymeleaf模板时默认会对HTML进行严格的检查,导致当你的标签没有闭合时就会通不过,例如: //要想通过, ...
- 微信小程序toast框的使用
1.wx.showToast() 方法可以配置toast框的提示文字,消失的时间,显示的图标 wx.showToast({ title: '请链接网络', icon:"none", ...
- jq无法获取a标签动态id
起初a标签是这样写的<a href="javascript:void(0)" id="${menu.id}" value="${menu.na ...
- IntelliJ IDEA 2017版 spring-boot2.0.2 搭建 JPA springboot DataSource JPA 实体类浅谈
一.实体类分析 一般用到的实体类的类型有 String类型.Long类型.Integer类型.Double类型.Date类型.DateTime类型.Text类型.Boolean型等 1.String类 ...
- keepalive主从上同时出现VIP,且均无法消失
低版本bug 双主架构中,keepalived日志出现: more /var/log/messageOct 9 03:16:22 mysql-dzg-60-148 Keepalived_vrrp[85 ...
- ubuntu server sudo出现sudo:must be setuid root 完美解决办法
原文链接:http://blog.csdn.net/supercrsky/article/details/9788397 1.开机按shift或esc先进行recovery模式 2.选择root命令行 ...
- 为WinEdt自定义XeLatex快捷键
没有彻底抛弃Windows很重要的一方面原因,WinEdt + Sumatra PDF对LaTeX支持的太好了(自动补全,反向搜索),而且当遇到复杂公式的时候,mathtype也能帮上大忙. 我一直用 ...