// create new instance of the proxy// (you could optionally pass in to the constructor a specific binding, if you need to)IWOVServicesSoapClient proxy = new IWOVServicesSoapClient();// supply the client credentials that are required because of your WCF configproxy.ClientCredentials.Windows.ClientCredential = new NetworkCredential("MyLoginId", "MyPassword", "MyDomain");// call some methodproxy.DoSomeMethod();