I want to implement a SOAP request using C# HttpWebrequest.
I am stock at customizing the initial line. Is there a simple solution or a work around?
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "POST /_urn:upnp-org:serviceId:ContentDirectory_control HTTP/1.1";
I want the initial Header line received by the Server to look like
POST /_urn:upnp-org:serviceId:ContentDirectory_control HTTP/1.1