我遇到错误:Error in parsing command
,当尝试使用安全的http-https://localhost:8080/
但是可以正常使用http-http://localhost:8080/
我的代码是:
procedure TForm1.IdHTTPServer1CommandGet(AContext: TIdContext;
ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo);
begin
Memo1.Lines.Add(ARequestInfo.UserAgent);
end;
procedure TForm1.IdHTTPServer1Exception(AContext: TIdContext;
AException: Exception);
begin
Memo1.Lines.Add(AException.Message);
end;