`

Silverlight3系列(二)Silverlight3+wcf+在不使用证书的情况下自定义用户名密码验证

阅读更多

 

  先说一下我的需求。

  系统需求:

  系统是一个电子商务平台,可以提供信息的展示,购买和交易(交易将来考虑)。其实和淘宝是一样的,区别就是淘宝是一个综合类的,什么产品都上的,我们是一个行业性的,垂直的。

  技术选型:

  Silverlight3

  WCF

  MS SQL

  功能需求:

  客户端可以直接通过http访问,不需要使用https,而且也不需要安装证书。我们的wcf服务不想直接暴露在Internet中,但是不要使用https访问,也不要证书验证,因为大部分还是信息的浏览,将来的交易部分肯定是需要https,甚至是需要安装证书的,目前不需要这些。

 

  设计

  

MyValidator类代码
<!--<br/ /><br/ />Code highlighting produced by Actipro CodeHighlighter (freeware)<br/ />http://www.CodeHighlighter.com/<br/ /><br/ />-->using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IdentityModel.Tokens;
using System.IdentityModel.Selectors;

namespace WcfService
{
    
public class MyValidator:UserNamePasswordValidator 
    {
        
private string _userName;

        
public string UserName
        {
            
get { return _userName; }
        }
        
private string _password;

        
public string Password
        {
            
get { return _password; }
        }
        
public override void Validate(string userName, string password)
        {
            
this._userName = userName;
            
this._password = password;
        }
    }
}

 

 

 

 

 

wcf的web.config配置
<!--<br/ /><br/ />Code highlighting produced by Actipro CodeHighlighter (freeware)<br/ />http://www.CodeHighlighter.com/<br/ /><br/ />--><system.serviceModel>
    
        
<services>
      
            
<service behaviorConfiguration="WcfService.Service1Behavior" name="WcfService.ServiceCustomer">
        
<host >
          
<baseAddresses >
            
<add baseAddress="http://sl.kimbanxcn:82/ServiceCustomer.svc"/>
          
</baseAddresses>
        
</host>
                        
<!--<endpoint address="" binding="basicHttpBinding" contract="WcfService.IServiceCustomer">-->
  
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="test" contract="WcfService.IServiceCustomer">
                    
<identity>
                        
<dns value="sl.kimbanxcn"/>
                    
</identity>
                
</endpoint>
        
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
      
</service>
    
        
</services>
        
<behaviors>
            
<serviceBehaviors>
                
<behavior name="WcfService.Service1Behavior">
          
<serviceMetadata httpGetEnabled="true"/>
          
<serviceDebug includeExceptionDetailInFaults="false"/>
          
<serviceCredentials >
            
<clientCertificate>
              
<authentication certificateValidationMode="None"/>
            
</clientCertificate>
            
<!--<issuedTokenAuthentication allowUntrustedRsaIssuers="true"></issuedTokenAuthentication>-->       
            
<userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="WcfService.MyValidator, WcfService"/>
          
</serviceCredentials>
            
        
</behavior>
        
            
</serviceBehaviors>
        
</behaviors>
    
<bindings >
      
<basicHttpBinding >
        
<binding name="test">        
          
<security mode="TransportCredentialOnly">
            
<message clientCredentialType="UserName"/>
          
</security>
        
</binding>
      
</basicHttpBinding>
    
</bindings>
    
</system.serviceModel>

 

 

 

客户端的调用代码
<!--<br/ /><br/ />Code highlighting produced by Actipro CodeHighlighter (freeware)<br/ />http://www.CodeHighlighter.com/<br/ /><br/ />-->client = new ServiceCustomerClient();
            client.ClientCredentials.UserName.UserName 
= "admin";
            client.ClientCredentials.UserName.Password 
= "admin";
            _sysUser 
= new SysUser() { UserName = "swb", Password = "swb" };
            LoadCustomers();
            GetCustomerById();
            client.SayHelloAsync(_sysUser);

 

 

wcf暴露的接口
<!--<br/ /><br/ />Code highlighting produced by Actipro CodeHighlighter (freeware)<br/ />http://www.CodeHighlighter.com/<br/ /><br/ />--> public string SayHello(SysUser sysUser)
        {
            _myValidator = (MyValidator)OperationContext.Current.Host.Credentials.UserNameAuthentication.CustomUserNamePasswordValidator;

            return string.Format("hello,{0},your password is {1}\n{2}{3}", sysUser.UserName, sysUser.Password,
                _myValidator.UserName,_myValidator.Password );
               // ,_myValidator.UserName ,_myValidator.Password );
        }

  可就是不成功,在wcf暴露的方法中设置断点, 跟踪到_myValidator .UserName为null,在MyValidator中设置断点,方法

  public override void Validate(string userName, string password)
        {
            
this._userName = userName;
            
this._password = password;
        }

就没有运行,挂不得是null呢,为什么呢?是不是配置问题呢?我尝试了很多组合,就是出不来效果,是不能这样做呢?还是旧不支持这种需求呢?请各位有空的帮我看看,也请搞过的朋友指点一二,谢谢了!!

   下图是我的WCF的IIS中的身份验证配置,是不是和这里也有什么关系呢?

  msn:jorden008@hotmail.com

  源代码:/Files/virusswb/Silverlight.rar

   

  在下一篇Silverlight+WCF的安全考虑1(紧接上文:Silverlight3+wcf+在不使用证书的情况下自定义用户名密码验证)中我对安全问题,又找了一些新的想法。

分享到:
评论

相关推荐

    WCF用户名+密码验证Demo

    **WCF(Windows Communication Foundation...通过这个"**WCF用户名+密码验证Demo**",初学者可以了解WCF服务安全的基础,包括证书的使用和基于用户名/密码的验证。结合源代码分析,将有助于快速上手并应用于实际项目。

    silverlight+Wcf实现登录

    3. **编写WCF服务**:在另一个.NET项目中创建WCF服务,定义一个登录方法,该方法接受用户名和密码作为参数,验证后返回结果。 4. **配置WCF服务**:在服务的配置文件(web.config或app.config)中,设置服务行为、...

    Wcf用户名密码安全验证

    wcf,用户名,密码,验证,wcf安全,

    WCF消息安全模式之自定义用户名密码

    总的来说,WCF中的UserName消息安全模式结合了证书验证和用户名/密码验证,提供了强大的安全措施。它确保了通信的私密性和完整性,同时也提供了自定义身份验证机制,可以根据特定需求调整验证策略。然而,实施这种...

    在IIS上部署Silverlight+WCF项目教程

    "在IIS上部署Silverlight+WCF项目教程" 本教程旨在指导用户如何在IIS上部署Silverlight+WCF项目,并解决可能遇到的问题。 首先,需要在IIS上配置好Silverlight+WCF项目的环境。具体来说,需要在IIS中添加以下MIME...

    WCF加密传输数据,b并且用户名+密码验证

    本篇将详细讲解如何在WCF服务中实现数据加密传输以及基于用户名和密码的身份验证。 标题中的"加密传输数据"是指在WCF通信过程中确保数据的保密性,防止未经授权的第三方窃取或篡改信息。这通常通过使用SSL/TLS协议...

    Silverlight + WCF 数据压缩

    在"Silverlight + WCF 数据压缩"这个主题中,我们将探讨如何在Silverlight客户端与WCF服务之间高效地传输数据,通过数据压缩来减少网络带宽消耗。 首先,理解数据压缩的重要性是关键。在网络通信中,如果数据量大,...

    Silverlight+WCF配置

    Silverlight+WCF配置具体方法 讲解

    Silverlight+WCF 员工管理系统

    此外,Silverlight还支持离线应用,这意味着即使在网络不稳定的情况下,用户仍能继续进行基本的数据访问和操作。 WCF则是微软的一种面向服务的架构,用于构建可互操作的分布式系统。在员工管理系统中,WCF作为服务...

    silverlight+wcf n维拼图游戏

    【银光+N维拼图游戏:Silverlight与WCF技术的完美融合】 本文将深入探讨一个基于Silverlight和WCF技术构建的n维拼图游戏的实现细节。Silverlight是微软推出的一种富互联网应用程序(RIA)平台,它允许开发者创建...

    silverlight+wcf+LinqToSql的demo

    《银光轻触,WCF流转,LINQ与SQL共舞——深入理解Silverlight+WCF+LinqToSql Demo》 在当今的Web开发领域,Silverlight作为一种强大的富客户端技术,以其丰富的用户界面和交互性受到众多开发者的青睐。而WCF...

    一个简单的 Silverlight 4 应用程序(MEF+ MVVM+ WCF RIA Services)源代码及安装文件

    "一个简单的 Silverlight 4 应用程序(MEF+ MVVM+ WCF RIA Services)源代码及安装文件" 这个标题表明我们正在讨论一个基于 Silverlight 4 的应用程序,它利用了三个关键的技术:Managed Extensibility Framework ...

    Silverlight+WCF对数据库操作的小程序

    在通信过程中,WCF服务使用SOAP协议进行消息交换,Silverlight客户端通过异步调用模式发起请求并处理响应。这种异步调用模式使得用户界面可以保持响应,避免了因等待服务器响应而冻结的问题。 为了确保数据安全,...

    windows服务+WCF中间件

    windows服务+WCF中间件 windows服务+WCF中间件 windows服务+WCF中间件 windows服务+WCF中间件 windows服务+WCF中间件 windows服务+WCF中间件 windows服务+WCF中间件

    silverlight+wcf

    8. **安全性与传输优化**:WCF提供了多种安全机制,如用户名/密码验证、证书验证等,确保数据传输的安全。此外,还可以通过压缩、流式传输等方式优化传输效率。 9. **调试与部署**:在开发过程中,WCF配置和...

    silverlight+wcf+EF

    这使得开发者可以在不熟悉Oracle SQL语法的情况下,利用EF的Linq查询语言进行数据库操作。 **项目实施步骤** 1. **创建数据模型**:在EF中定义实体类,这些类对应于数据库中的表。 2. **配置数据库上下文**:创建...

    silverlight+wcf+linq简单实例

    在这个"silverlight+wcf+linq简单实例"中,我们将深入探讨这三种技术如何协同工作,以实现对服务器数据库的数据操作。 首先,Silverlight是微软开发的一种RIA(Rich Internet Application)技术,它允许开发者创建...

    vs2010+Silverlight4+wcf开发部署全过.doc.doc

    1 安装开发环境 操作系统:Windows 7 专业版 Vs2010:cn_visual_studio_2010_ultimate_x86_dvd_532347.iso这是微软送的一个版本,先前在微软下载...3 建立一个vs2010+silverlight4+wcf的项目 为了少啰嗦,大家看图吧。

    MF00680-silverlight+wcf仓库管理源码.zip

    silverlight+wcf仓库管理系统源码 仓库源码 开发语言 : C# 数据库 : SQL2008 开发工具 : VS2010 源码类型 : WebForm 注意:不带技术支持,有帮助文件,虚拟商品,发货不退,看好再拍。 源码描述: silverlight +...

Global site tag (gtag.js) - Google Analytics