WCF服务使用(IIS+Http)和(Winform宿主+Tcp)两种方式进行发布
[ServiceContract]
public interface IPeopleInfo
{
[OperationContract]
int GetAge(string name);
}
数据契约:
[DataContract]
public class People
{
public string Name;
public int Age;
}
服务实现:
public class PeopleInfo : IPeopleInfo
{ public int GetAge(string name)
{
List<People> peopleList = DataFactory.GetPeopleList();
return peopleList.Find(t =>t.Name==name).Age ;
}
}
辅助类:
public class DataFactory
{
public static List<People> GetPeopleList()
{
List<People> peopleList = new List<People>();
peopleList.AddRange(new People[] {
new People{Name="tjm",Age=},
new People{Name="lw",Age=},
new People{Name="tj",Age=},
});
return peopleList;
}
}
WCF部署IIS出现“由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加 MIME 映射”的解决办法
管理员身份运行C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe -i
HTTP 错误 404.3 - Not Found,
使用管理员注册:C:\Windows\system32>"C:\Windows\Microsoft.NET\Framework\v4.0.30319\ServiceModelReg.exe" -r
Microsoft(R) WCF/WF 注册工具版本 4.5.0.0
版权所有(C) Microsoft Corporation。保留所有权利。
用于管理一台计算机上 WCF 和 WF 组件的安装和卸载的管理实用工具。
[错误]此 Windows 版本不支持此工具。管理员应改为使用“打开或关闭 Windows 功能”对话框或 dism 命令行工具来安装/卸载 Windows Communication Foundation 功能。
根据错误的提示,去控制面板->程序->启用或关闭Windows功能,如下图
把我画红线的框内的复选框全部勾选,点击确定,然后再在iis中再进行浏览就能够找到发布后的WCF服务了,原因应该是我没有安装WCF服务的组件而导致的吧。在浏览器中浏览服务如下。

在window功能中卸载iis和WCF服务,然后再重新安装配置。
首先建立一个Winform项目,界面如下。
注意:在部署之前需要把第一步中编写服务的dll引用进来。
ServiceHost host;
private void btnStart_Click(object sender, EventArgs e)
{
//使用代码绑定
Uri tcpa = new Uri("net.tcp://172.21.212.54:8090/peopleinfo");
host = new ServiceHost(typeof(FirstWCFService.PeopleInfo), tcpa);
ServiceMetadataBehavior mBehave = new ServiceMetadataBehavior();
NetTcpBinding tcpb = new NetTcpBinding();
host.Description.Behaviors.Add(mBehave);
host.AddServiceEndpoint(typeof(IMetadataExchange), MetadataExchangeBindings.CreateMexTcpBinding(), "mex");
host.AddServiceEndpoint(typeof(FirstWCFService.IPeopleInfo), tcpb, tcpa); host.Open();
this.btnStart.Enabled = false;
this.label1.Text = "Service Running";
} private void btnStop_Click(object sender, EventArgs e)
{
if (host != null)
{
host.Close();
this.label1.Text = "Service Closed";
this.btnStart.Enabled = true;
}
}
2)使用配置文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service name="FirstWCFService.PeopleInfo">
<!--客户端用来解释服务,这个端点如果缺少服务会发布失败-->
<endpoint contract="IMetadataExchange"
binding="mexTcpBinding" address ="net.tcp://172.21.212.54:8090/peoleinfo/mex"></endpoint>
<!--提供服务的端点-->
<endpoint address="net.tcp://172.21.212.54:8090/peoleinfo" binding="netTcpBinding"
contract="FirstWCFService.IPeopleInfo"> </endpoint>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
虽然是用来配置文件,但是开启服务的代码还是需要写的。代码如下。
ServiceHost host;
private void btnStart_Click(object sender, EventArgs e)
{
host = new ServiceHost(typeof(FirstWCFService.PeopleInfo));
host.Open();
this.btnStart.Enabled = false;
this.label1.Text = "Service Running";
} private void btnStop_Click(object sender, EventArgs e)
{
if (host != null)
{
host.Close();
this.label1.Text = "Service Closed";
this.btnStart.Enabled = true;
}
}
运行程序,点击Start按钮,到此使用Winform作为宿主来发布WCF服务已经成功了。



<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IPeopleInfo" />
</basicHttpBinding>
<netTcpBinding>
<binding name="NetTcpBinding_IPeopleInfo">
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint address="http://172.21.212.54/PeopleInfo.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IPeopleInfo" contract="HttpService.IPeopleInfo"
name="BasicHttpBinding_IPeopleInfo" />
<endpoint address="net.tcp://172.21.212.54:8090/peoleinfo" binding="netTcpBinding"
bindingConfiguration="NetTcpBinding_IPeopleInfo" contract="TcpService.IPeopleInfo"
name="NetTcpBinding_IPeopleInfo" />
</client>
</system.serviceModel>
</configuration>
调用服务操作的代码非常简单,就类似于操作本地的类一样,代码如下:
private void bntGet_Click(object sender, EventArgs e)
{
string name = this.txtName.Text;
int age;
if (rdbHttp.Checked)
{
HttpService.PeopleInfoClient httpClient = new HttpService.PeopleInfoClient();
age = httpClient.GetAge(name);
}
else
{
TcpService.PeopleInfoClient tcpClient = new TcpService.PeopleInfoClient();
age = tcpClient.GetAge(name);
}
this.txtAge.Text = age.ToString();
}
到此,wcf的客户端编写完成,结果如下。


System.ServiceModel.Security.SecurityNegotiationException: 服务器已拒绝客户端凭据。 --->
System.Security.Authentication.InvalidCredentialException: 服务器已拒绝客户端凭据。 --->
System.ComponentModel.Win32Exception: 登录没有成功
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service name="FirstWCFService.PeopleInfo">
<!--客户端用来解释服务,这个端点如果缺少服务会发布失败-->
<endpoint contract="IMetadataExchange"
binding="mexTcpBinding" address ="net.tcp://172.21.212.54:8090/peoleinfo/mex"></endpoint>
<!--提供服务的端点-->
<endpoint address="net.tcp://172.21.212.54:8090/peoleinfo" binding="netTcpBinding"
contract="FirstWCFService.IPeopleInfo" bindingConfiguration="NoSecurity">
</endpoint>
</service>
</services>
<bindings>
<netTcpBinding>
<binding name="NoSecurity">
<security mode="None"/>
</binding>
</netTcpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
设置完成之后,重新开启服务。然后在客户端删除winform宿主发布的服务,并且再重新添加,以便在配置文件中重新生成访问tcp方式的服务端点的配置。更新后的配置文件如下,红色加粗部分为更新的。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IPeopleInfo" />
</basicHttpBinding>
<netTcpBinding>
<binding name="NetTcpBinding_IPeopleInfo">
<security mode="None" />
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint address="http://172.21.212.54/PeopleInfo.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IPeopleInfo" contract="HttpService.IPeopleInfo"
name="BasicHttpBinding_IPeopleInfo" />
<endpoint address="net.tcp://172.21.212.54:8090/peoleinfo" binding="netTcpBinding"
bindingConfiguration="NetTcpBinding_IPeopleInfo" contract="TcpService.IPeopleInfo"
name="NetTcpBinding_IPeopleInfo" />
</client>
</system.serviceModel>
</configuration>
WCF服务使用(IIS+Http)和(Winform宿主+Tcp)两种方式进行发布的更多相关文章
- c# winform播放声音的两种方式
axWindowsMediaPlayer1.settings.setMode("", true); axWindowsMediaPlayer1.URL = "skcg.m ...
- WCF 一步一步 发布 WCF服务 到 IIS (图)
WCF 一步一步 发布 WCF服务 到 IIS (图) 使用VS自带的WCFSVCHost(WCF服务主机)发布WCF服务,时刻开发人员测试使用. 下面我们来看一下如何在IIS中部发布一个WCF服务. ...
- .Net WCF服务部署IIS详细解析
官方解析:Windows Communication Foundation(WCF)是由微软开发的一系列支持数据通信的应用程序框架,可以翻译为Windows 通讯开发平台.整合了原有的windows通 ...
- C#动态调用WCF接口,两种方式任你选。
写在前面 接触WCF还是它在最初诞生之处,一个分布式应用的巨作. 从开始接触到现在断断续续,真正使用的项目少之又少,更谈不上深入WCF内部实现机制和原理去研究,最近自己做一个项目时用到了WCF. 从这 ...
- 第二节:SSL证书的申请、配置(IIS通用)及跳转Https请求的两种方式
一. 相关概念介绍 1. SSL证书服务 SSL证书服务由"服务商"联合多家国内外数字证书管理和颁发的权威机构.在xx云平台上直接提供的服务器数字证书.您可以在阿里云.腾讯云等平台 ...
- 不停止MySQL服务增加从库的两种方式
不停止MySQL服务增加从库的两种方式 转载自:http://lizhenliang.blog.51cto.com/7876557/1669829 现在生产环境MySQL数据库是一主一从,由于业务量访 ...
- XFire构建服务端Service的两种方式(转)
XFire构建服务端service的两种方式,一是用xfire构建,二是和spring集成构建. 一,xifre构建,确保把xfire的jar包导入到工程中或classpath. 1,service的 ...
- XFire构建服务端Service的两种方式
1.原声构建: 2.集成spring构建 http://blog.csdn.net/carefree31441/article/details/4000436XFire构建服务端Service的两种方 ...
- 不停止MySQL服务增加从库的两种方式【转载】
现在生产环境MySQL数据库是一主一从,由于业务量访问不断增大,故再增加一台从库.前提是不能影响线上业务使用,也就是说不能重启MySQL服务,为了避免出现其他情况,选择在网站访问量低峰期时间段操作. ...
随机推荐
- SVN版本服务器的搭建和远程控制
版本服务器是用SVN server(这个东西是放到版本机服务器上的) 版本管理工具是用小乌龟(tortoiseSVN,这个是在各个机器上使用) 1,昨天下载了SVN server 按照网上教程搭建好 ...
- 初中级web前端工程师的面试题分享
1.html三栏布局有几种(就是左右固定,中间自适应) 浮动布局float.定位布局.flex布局.表格布局.css3栅栏布局 <style media="screen"&g ...
- 高仿IOS下拉刷新的粘虫效果
最近看需要做一款下拉刷新的效果,由于需要和Ios界面保持一致,所以这用安卓的方式实现了ios下的下拉刷新的粘虫效果. 最新的安卓手机版本的QQ也有这种类似的效果,就是拖动未读信息的那个红色圆圈,拖动近 ...
- java解压缩.gz .zip .tar.gz等格式的压缩包方法总结
1..gz文件是linux下常见的压缩格式.使用 java.util.zip.GZIPInputStream即可,压缩是 java.util.zip.GZIPOutputStream public s ...
- 【bzoj2789】 Letters 树状数组
又是一道树状数组求逆序对的题目. 这一题我们可以将第二个串中的每一个字母,与第一个串中的字母做两两匹配,令第二个串第i个字母的值id[i]为该字母与第一个串中的字母匹配到的位置. 然后考虑到所求答案为 ...
- win7,8走网络打印机出现删除设备和打印机门未关闭的解决方法
不多说,直接上干货! 用学校的内网连接, 即可. 右键,查看设备网页. 出现下面的情况: 多学学. 欢迎大家,加入我的微信公众号:大数据躺过的坑 人工智能躺过的坑 同时,大家 ...
- Self-Attention与Transformer
直观理解与模型整体结构 先来看一个翻译的例子“I arrived at the bank after crossing the river” 这里面的bank指的是银行还是河岸呢,这就需要我们联系上下 ...
- GridSearchCV
GridSearchCV 简介: GridSearchCV,它存在的意义就是自动调参,只要把参数输进去,就能给出最优化的结果和参数.但是这个方法适合于小数据集,一旦数据的量级上去了,很难得出结果.这个 ...
- springboot-25-springboot 集成 ActiveMq
消息的发布有2种形式, 队列式(点对点) 和主题式(pub/sub) 模式, 队列式发布后, 接收者从队列中获取消息后, 消息就会消失, 但任意消费者都可以从队列中接受消息, 消息只能被接受一次 主题 ...
- 面试题43:计算多少种译码方式(decode-ways)
这道题是非常典型的DP问题.按照DP的套路,关键是讨论出递推表达式,遍历过程中针对当前字符是否为'0'以及前一个字符为'0',分类讨论得出到目前字符为止最多有多少种译码方式?理清了递推表达式,代码是很 ...