I have a WCF service reference:
http://.../Service.svc(?WSDL)
and I have an XML file containing a compliant SOAP envelope
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<MyXML>
...
Now, I would like to send this raw data directly to the service (and receive the response) via some C# code without using a Visual Studio service reference.
Is this possible, and if so, how?