When I execute the fallowing URL in Internet Explorer
I get there the message
ERR 103
No account with given username/password
How can I do this with C#? I have tried:
var url = "http://sms.horisen.info:12000/bulk/send?type=text&user=xxx&password=xxx&sender=Bulk+Test&receiver=%2b123456789&dcs=UCS&text=Dies+ist+ein+Test!&dlr-mask=19";
var req = (HttpWebRequest)WebRequest.Create(url);
var res = req.GetResponse();
But on the last line, there occures a System.Net.WebException
How does I have to execute this where I can get the result as text?