I need to integrate my server with non-WCF client and suggested to change SOAP version in the headers. This can be done with
The custom binding definition is:
<customBinding>
<binding name="basicHttpEquivalent">
<security authenticationMode="UserNameOverTransport" />
<textMessageEncoding messageVersion="Soap11" />
<httpsTransport />
</binding>
</customBinding>
But this binding is exactly same as the basicHttpBinding
you mentioned.