I wonder if exists some magic configuration parameter to "relax" WCF SecurityMode=Transport in order to use it with no SSL(http instead of https). I need to setup (for testing purpose) a wsHttpBinding with UserName credentials under http. I understand the underlying requirements, but I just need it for easy testing purpose.
            Asked
            
        
        
            Active
            
        
            Viewed 32 times
        
    1
            
            
        - 
                    I think you could only set WCF SecurityMode = TransportCredentialOnly, you also have to enable basic authentication in IIS. http://developers.de/blogs/damir_dobric/archive/2006/07/31/890.aspx – ale Mar 11 '15 at 09:20
 - 
                    I'm going to try TransportWithMessageCredential http://stackoverflow.com/questions/20185295/wcf-authentication-transportcredentialonly-with-aspnet-membership TransportCredentialOnly seems to work only for httpBinding. Thanks anyway for the tips, that might gonna put me onto the right track! – Crixo Mar 11 '15 at 10:09
 - 
                    It seems there's no workaround for ssl using wsHttpBinding – Crixo Mar 11 '15 at 14:09