I have a problem to connect to my WCF service if customer is using proxy with credentials. I\'m unable to find the way to set credential to generated client proxy.
I'm not entirely sure if this is what you are looking for but here you go.
MyClient client = new MyClient(); client.ClientCredentials.UserName.UserName = "u"; client.ClientCredentials.UserName.Password = "p";