我有一个调用DLL的主应用程序。这个DLL是我使用Indy的TIdHTTP
组件进行HTTP请求的地方。它第一次运行正常,但是在关闭DLL并重新打开它之后,我得到HTTP/1.1 400 Bad Request
异常:
var
idgetInfo : TIdHTTP;
begin
idgetInfo := TIdHTTP.Create(nil);
idgetInfo.AllowCookies := True;
idgetInfo.HandleRedirects := True;
try
result := idgetInfo.Get(GetString);
finally
if Assigned(idgetInfo) then
FreeAndNil(idgetInfo);
end;
end;