Hallo,
ich habe ein Problem mit der Rückgabe eines Webservice. Umlaute werden im Memo falsch dargestellt (im Browser korrekt!). Quelltext:
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
sl : TStringlist;
begin
sl := TStringList.Create;
sl.Values['
id']:='
4';
sl.Values['
name']:='
oinki-ö';
sl.Values['
email']:='
oinki@web.de';
// memo1.Lines.Text := IdHTTP1.Post('http://localhost/ci2/index.php/websvc/example/users/format/xml',sl);
memo1.Lines.Text := IdHTTP1.Get('
http://localhost/ci2/index.php/websvc/example/users/format/xml');
sl.Free;
end;
Hilfe