We\'ve got to access a web service that uses soap11... no problem I\'ll just set the binding as:
BasicHttpBinding wsBinding = new BasicHttpBinding(BasicHttpS
@D. Forrest already found the solution, but a simple way to see what objects are involved for a given WCF configuration is to call .Endpoint.Binding.CreateBindingElements()
on the client proxy you are using. You can the dump the object tree of each item in the list that is returned and see how the binding is configured.