Wywołując WSDL w SOAP 1.1

C++
Uri lU = new Uri("http://127.0.0.1:8088/mockTransmitMessageServiceBinding");
EndpointAddress address = new EndpointAddress(lU);

BasicHttpBinding binding = new BasicHttpBinding();
binding.Security.Mode = BasicHttpSecurityMode.None;
binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic;

WS.TransmitMessageServicePortTypeClient sServices = new WS.TransmitMessageServicePortTypeClient(binding, address);

zapytanie wygląda tak:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<TransmitMessage xmlns="http://rep.xmlstandards.eu/ecg/services/TransmitMessageService_v1r0.wsdl">
<Name xmlns="">nazwa_pliku</Name>
</TransmitMessage>
</s:Body>
</s:Envelope>

Chciałby żeby wyglądało tak:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tran="http://rep.xmlstandards.eu/ecg/services/TransmitMessageService_v1r0.wsdl">
soapenv:Header/
soapenv:Body
tran:TransmitMessage
<Name>nazwa_pilku</Name>
</tran:TransmitMessage>
</soapenv:Body>
</soapenv:Envelope>

Czy mogę prosić o podpowiedź jak to zrobić?