oh, habe was vom quelltext nicht mit angegeben!
sorry!
Delphi-Quellcode:
// http request
content := 'type=pocsag&function=a&address=1126026&flags=0&message=hallo';
if Client.Connected then Client.Disconnect;
Client.Connect;
nl := AnsiChar(#13) + AnsiChar(#10);
request := 'POST /telegramin/alarmgeber/index.xml HTTP/1.1' + nl
+ 'Authorization: Basic jhfhuhjjwerjejghjhewjE=' + nl
+ 'Content-Type: application/x-www-form-urlencoded' + nl
+ 'Host: 192.168.0.110' + nl
+ 'Content-Length: ' + IntToStr(length(content)) + nl
+ 'Expect: 100-continue' + nl
+ 'Connection: Keep-Alive'+ nl + nl
+ content;
Client.IOHandler.WriteLn(request);
verstehe es nicht? wieso da nix raus geht!
die fehlermeldung: 'connection Closed Gracefully' verstehe ich auch nicht??