Ergänzung Kategorie: Verschiedenes (von Mark - 3.08.2006 20:00) | ||
Als Antwort auf XPort und C-Control als Webserver von Mark - 3.08.2006 17:59 | ||
| ||
Hier noch mal der Code. Bis zur Meldung "Erfolgreich2" klappt es auch, aber ab hwcom.print("xy"); nicht mehr. thread main { byte fifo[512]; string s; hwcom.init(); hwcom.setspeed(8); hwcom.setbuf(fifo,512); edip.enableTerminal(0,1); edip.FF(0); loop { hwcom.flush(); wait hwcom.rxd(); hwcom.inputstr(s,0); edip.println(0,s); if strx.comp(s,"GET / HTTP/1.1") or strx.comp(s,"GET / HTTP/1.0") { edip.println(0,"Erfolgreich1"); hwcom.flush(); edip.println(0,"Erfolgreich2"); hwcom.print("HTTP/1.1 200 OKn"); edip.println(0,"Erfolgreich3"); hwcom.print("Server: C-Control IIn"); hwcom.print("Content-Length: 90n"); hwcom.print("Content-Language: den"); hwcom.print("Content-Type: text/htmln"); hwcom.print("Connection: closenn"); hwcom.print("<html>n<body>n"); hwcom.print("<b>C-Control II</b> im Webn"); hwcom.print("<font color=red>Es geht!!</font>"); hwcom.print("</body> </html> "); } hwcom.put(0); } } | ||
Antwort schreiben Antworten: Die Lösung (von Mark - 3.08.2006 20:09) Re: Die Lösung (von André H. - 5.08.2006 21:08) Re: Die Lösung (von Mark - 6.08.2006 13:19) |