ClientCredentials are those that the client provides to the service. ServiceCredentials are those that the service provides to the client when the configuration requires mutual authentication.
On the service side:
WSHttpBinding b = new WSHttpBinding(SecurityMode.Transport);
b.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic;
On the client side:
proxy.ClientCredentials.UserName.UserName = "username";
proxy.ClientCredentials.UserName.Password = "password";
I hope this helps.
Edit:
OR
If you're using BasicHttpBinding, take a look at this: http://msdn.microsoft.com/en-us/library/system.servicemodel.basichttpmessagecredentialtype.aspx.
Here a ClientCredentialType of UserName "Indicates that the client be authenticated using a username credential."
OR
Here is an example of creating a custom username/password validator.
I hope something here helps. :-)
