I'm trying to send a SOAP request to a FritzBox (WLAN router) using C#. Currently I'm assembling the XML SOAP request by hand, since the server does not offer a WSDL file.
This is how I create the web request that I attach my XML to:
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create (@"http://fritz.box:49000/igdupnp/control/WANIPConn1");
webRequest.Headers.Add (@"SOAP:Action");
webRequest.ContentType = "text/xml;charset=\"utf-8\"";
webRequest.Accept = "text/xml";
webRequest.Method = "POST";
But when sending the request I get a WebException:
The remote server returned an error: (404) Not Found.
I'm pretty sure it has to do something with my URL, but I don't know how to fix it. The FritzBox documentation is rather bad :-/
Here another example of a common UseCase: Get new IP Address
Full Code example is also on Github: Link