WCF and Kerberos Authentication

后端 未结 4 1668
囚心锁ツ
囚心锁ツ 2020-12-11 02:57

I have followed numerous msdn articles and the codeplex guidance but cannot get WCF to work with Kerberos authentication and delegation and would appreciate a little help.

4条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-11 03:41

    For me the current setup does work:

    On the Server:

    
      
        
          
        
      
    
      
        
            
            
        
      
    
      
        
            
                
                
                
            
        
      
    
    

    Set the following attribute on all methods for the WCF:

    [OperationBehavior(Impersonation = ImpersonationOption.Required)]
    

    On the Client:

    
      
        
            
                
                
                
                    
                    
                
            
        
      
    
      
        
            
            
                
            
            
        
              
    
      
        
            
                
                                  
        
      
    
    

    HTH, Sven

提交回复
热议问题