Hallo zusammen,
ich habe ein Problem beim C# Webrequest:
Der Fehler:
Code
Eine nicht behandelte Ausnahme des Typs "System.ArgumentException" ist in mscorlib.dll aufgetreten.
Zusätzliche Informationen: Der Datenstrom war nicht lesbar.
Zusätzliche Informationen: Der Datenstrom war nicht lesbar.
Code
ASCIIEncoding encoding = new ASCIIEncoding(); string postData = "user=lukas&password=1234"; byte[] data = encoding.GetBytes(postData); HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create("http://localhost/test.php"); myRequest.Method = "POST"; myRequest.ContentType = "application/x-www-form-urlencoded"; myRequest.ContentLength = data.Length; Stream newStream = myRequest.GetRequestStream(); newStream.Write(data, 0, data.Length); StreamReader reader = new StreamReader(newStream); string text = reader.ReadToEnd(); MessageBox.Show(text);
die test.php:
PHP
<?phpif(isset($_POST['user']) && isset($_POST['password'])){ echo "Erfolgreich";}else{ echo "Fehler";}?>
Hat von euch vielleicht jemand eine Idee woran es liegen könnte?
MfG