Custom client credentials type (username in querystring) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:35:42Z http://stackoverflow.com/feeds/question/950659 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/950659/custom-client-credentials-type-username-in-querystring 0 Custom client credentials type (username in querystring) Richard Szalay 2009-06-04T13:38:59Z 2009-06-05T01:15:36Z <p>I've been digging through WCF security in an apparently vain attempt to create a service/endpoint behavior that allows me to specify the client username/password credentials (but not to authenticate them, I'm happy to use the built in functionality for that). My intent is to supply the username (no password) in the querystring for use with JSONP.</p> <p>So far, though, it's just making my brain leak out my ears. Can anyone point me in the right direction?</p> <p>While we're here, can anyone explain the difference between clientCredentials and serviceCredentials?</p> <p>I'm using WCF with .NET 3.5 SP1.</p> <p><strong>Edit:</strong> I've been through the MSDN article [How To: Create Custom Client and Service Credentials|<a href="http://msdn.microsoft.com/en-us/library/ms730868" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms730868</a>(VS.85).aspx] but it's particularly great at showing you what to extend but not the responsibilities of each are. Even using reflector, I just can't seem to find which class/interface has the responsibility of actually picking the credentials from the request (be it from an HTTP header or whatever).</p> <p><strong>Edit 2:</strong> I'd like to avoid using aspnet compatability as there will be a named-pipes binding (using a traditional authentication method).</p> <p><strong>Edit 3:</strong> Before anyone thinks of it, I am aware of the username:password@url.com format, but it is disabled in IE8 (at least). It seems to be automatically rejected, even when included in a &lt;script> tag on a test page.</p> http://stackoverflow.com/questions/950659/custom-client-credentials-type-username-in-querystring/950823#950823 0 Answer by Tanner for Custom client credentials type (username in querystring) Tanner 2009-06-04T14:08:20Z 2009-06-04T14:08:20Z <p>Try here:</p> <ul> <li><a href="http://www.codeplex.com/WCFSecurity" rel="nofollow">Codeplex - Security</a></li> <li><a href="http://www.codeplex.com/WCFSecurityGuide" rel="nofollow">Codeplex - Security Guide</a></li> </ul> <p>Client credentials - the user/client app will provide it: i.e. username/password, windows account</p> <p>Service Credentials - server provides - i.e. a certificate (SSL)</p> <p>both are required to set up a security context.</p> http://stackoverflow.com/questions/950659/custom-client-credentials-type-username-in-querystring/953802#953802 2 Answer by Mark Good for Custom client credentials type (username in querystring) Mark Good 2009-06-05T00:50:01Z 2009-06-05T01:15:36Z <p><strong>ClientCredentials</strong> are those that the client provides to the service. <strong>ServiceCredentials</strong> are those that the service provides to the client when the configuration requires mutual authentication.</p> <p>On the service side:</p> <pre><code>WSHttpBinding b = new WSHttpBinding(SecurityMode.Transport); b.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic; </code></pre> <p>On the client side:</p> <pre><code>proxy.ClientCredentials.UserName.UserName = "username"; proxy.ClientCredentials.UserName.Password = "password"; </code></pre> <p><strong>OR</strong></p> <p>If you're using BasicHttpBinding, take a <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.basichttpmessagecredentialtype.aspx" rel="nofollow">look at this</a>.</p> <p>Here a <strong>ClientCredentialType</strong> of <strong>UserName</strong> "Indicates that the client be authenticated using a username credential."</p> <p><strong>OR</strong> </p> <p><a href="http://nayyeri.net/blog/custom-username-and-password-authentication-in-wcf-3-5/" rel="nofollow">Here is an example</a> of creating a custom username/password validator.</p> <p>I hope something here helps. :-)</p>