应无所住,而生其心
排名
1
文章
860
粉丝
112
评论
163
net core webapi post传递参数
庸人 : 确实坑哈,我也是下班好了好几次,发现后台传递对象是可以的,但...
百度编辑器自定义模板
庸人 : 我建议换个编辑器,因为现在百度富文本已经停止维护了,用tinymec...
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

wcf自定义用户名密码验证

5402人阅读 2014/1/6 10:12 总访问:5185397 评论:0 收藏:0 手机
分类: WCF


一:创建证书

     makecert.exe -sr LocalMachine -ss My -a sha1 -n CN=TestServer -sky exchange -pe


二;建立wcf服务

     配置文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3.  
  4.   <appSettings>
  5.     <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  6.   </appSettings>
  7.   <system.web>
  8.     <compilation debug="true" targetFramework="4.5" />
  9.     <httpRuntime targetFramework="4.5"/>
  10.   </system.web>
  11.  
  12.   <system.serviceModel>
  13.     
  14.     <behaviors>
  15.       <serviceBehaviors>
  16.         <behavior name="mybehavior">
  17.           <serviceMetadata httpGetEnabled="false" httpsGetEnabled="false" />
  18.           <serviceDebug includeExceptionDetailInFaults="false" />
  19.  
  20.           <serviceCredentials>
  21.             <clientCertificate>
  22.               <!--自定义对客户端进行证书认证方式 这里为 None-->
  23.               <authentication certificateValidationMode="None"/>
  24.             </clientCertificate>
  25.             
  26.             <userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="WcfCertificate.Validator,WcfCertificate" />
  27.             <serviceCertificate storeLocation="LocalMachine" storeName="My" findValue="TestServer" x509FindType="FindBySubjectName" />
  28.           </serviceCredentials>         
  29.         </behavior>
  30.       </serviceBehaviors>
  31.     </behaviors>
  32.  
  33.     <!--指定验证方式-->
  34.      <bindings>
  35.       <wsHttpBinding>
  36.         <binding name="myhttpbind">
  37.           <security mode="Message">
  38.             <message clientCredentialType="UserName"/>
  39.           </security>
  40.         </binding>
  41.       </wsHttpBinding>
  42.     </bindings>
  43.     <services>
  44.  
  45.       <service name="WcfCertificate.Service1"  behaviorConfiguration="mybehavior">   
  46.         <endpoint address="" binding="wsHttpBinding" bindingConfiguration="myhttpbind" contract="WcfCertificate.IService1">
  47.           <identity>
  48.             <dns  value="TestServer"/>
  49.           </identity>
  50.         </endpoint>
  51.         <endpoint address="MEX" binding="mexHttpBinding" contract="IMetadataExchange"/>
  52.       </service>
  53.     
  54.     </services>
  55.     
  56.     <protocolMapping>
  57.         <add binding="basicHttpsBinding" scheme="https" />
  58.     </protocolMapping>    
  59.     <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  60.   </system.serviceModel>
  61.   <system.webServer>
  62.     <modules runAllManagedModulesForAllRequests="true"/>
  63.     <!--
  64.         若要在调试过程中浏览 Web 应用程序根目录,请将下面的值设置为 True。
  65.         在部署之前将该值设置为 False 可避免泄露 Web 应用程序文件夹信息。
  66.       -->
  67.     <directoryBrowse enabled="true"/>
  68.   </system.webServer>
  69.  
  70. </configuration>


三:增加一个自定义验证类

       Validator类,它要继承System.IdentityModel.Selector.UserNamePasswordValidator基类。

  1.  public class Validator : UserNamePasswordValidator 
  2.     {
  3.          
  4.         public override void Validate(string userName, string password)
  5.         {
  6.             if (!string.Equals(userName, "sa") || !string.Equals(password, "1234"))
  7.                 throw new Exception("Access Denied");
  8.         } 
  9.     }


四:前端调用

     配置文件

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.     <startup> 
  4.         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  5.     </startup>
  6.     <system.serviceModel>
  7.         <bindings>
  8.             <wsHttpBinding>
  9.                 <binding name="WSHttpBinding_IService1">
  10.                     <security>
  11.                         <message clientCredentialType="UserName" />
  12.                     </security>
  13.                 </binding>
  14.             </wsHttpBinding>
  15.         </bindings>
  16.         <client>
  17.             <endpoint address="http://192.168.1.102:8191/Service1.svc" binding="wsHttpBinding"
  18.                 bindingConfiguration="WSHttpBinding_IService1" contract="ServiceReference1.IService1"
  19.                 name="WSHttpBinding_IService1" behaviorConfiguration="mye">
  20.                 <identity>
  21.                     <dns value="TestServer" />
  22.                 </identity>
  23.             </endpoint>
  24.         </client>
  25.           
  26.        <behaviors>
  27.         <endpointBehaviors>
  28.           <behavior name="mye">
  29.             <clientCredentials>
  30.               <serviceCertificate>
  31.                 <!--这里必须要制定为None-->
  32.                 <authentication certificateValidationMode="None"/>
  33.               </serviceCertificate>
  34.             </clientCredentials>
  35.           </behavior>
  36.         </endpointBehaviors>
  37.       </behaviors>
  38.     </system.serviceModel>
  39. </configuration>

调用时需要知道用户名密码:

  1.  private void button1_Click(object sender, EventArgs e)
  2.         {
  3.             ServiceReference1.Service1Client sc = new ServiceReference1.Service1Client();
  4.  
  5.             sc.ClientCredentials.UserName.UserName = "sa";
  6.             sc.ClientCredentials.UserName.Password = "1234";
  7.             MessageBox.Show(sc.GetData(22));
  8.  
  9.         }


欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

wcf DuplexHttpBinding双向通信

一:建立接口CallbackContract = typeof(ICallback)指定需要回调通信的接口,该接口方法由前端实现[ServiceContract(Callba...

wcf net.tcp 双向通讯,以及发布iis问题

一:新建wcf服务 UserCallBack.svc[ServiceContract(CallbackContract=typeof(ICallback))]//指定UserCallBack回调接口 pu...

wcf使用X509证书数据加密

一:创建证书在VS2012 的DOS命令提示中,输入下面的命令创建两个证书makecert.exe -sr LocalMachine -ss My -a sha1 -n CN=...

winform+wcf(netTcpBinding)双向通讯 自定义用户名密码验证

一:创建证书 使用vs的命令创建 makecert.exe -sr LocalMachine -ss My -a sha1 -n CN=TestServer -sky exchange -p...

引用wcf常见异常

一:ASP.NET MVC添加wcf服务成功,但不能生成配置文件,不能使用 而且在winfrom,siverlight都能使用成功 把重新使用的...

wcf大数据传输配置

传输大数据到服务器端只需要在wcf服务端配置默认的超过65535B时就会出现(413) Request Entity Too Large的异常改变默认的传...

wcf接口配置文件所遇到的错

首先创建DAL类库在里面使用EF连接数据库创建实体把连接字符串复制到主体项目中的Web.config中的configuration中下面第一个...

wcf客户端数据条数超出限制

在SqlServer中使用循环语句添加多条测试数据在WCF客户端调用数据库数据超出限制最大限制条数这时就会报错。此时可以进行修...

webservice和wcf和web.api简单介绍

在.net平台下,有大量的技术让你创建一个HTTP服务,像Web Service,WCF,现在又出了Web API。在.net平台下,你有很多的选择...

wcf 接口使用基础

新建一个WCF服务添加方法一个特性对应一个方法最后将项目发布WCF接口就算是创建好了调用和Webservice一样的

wcf 异步操作

前 言tnblog代码从上往下执行,代码没执行完不能进行其他的操作,这个时候就需要使用异步避免这个坑(功能类似于Ajax)Serv...

wcf 控制台发布

前言WCF 不仅可以通过IIS发布,还可以通过控制台发布代码部分//引入命名空间 usingSystem.ServiceModel; using(Service...

wcf的异步操作

//先创建一个MVC项目然后创建一个Wcfservies publicclassService2:IService2 { publicintSum(inta,intb) {//将输出延迟...

wcf 控制台发布

staticvoidMain(string[]args) { using(ServiceHostser=newServiceHost(typeof(Service1))){ ser.Opening+=ser_Opening;...

wcf控制台发布

代码如下:usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threadi...