我需要在我的webservice中存储请求的响应。我可以这样捕获请求:
procedure TMyIdHTTPWebBrokerBridge.DoCommandGet(AThread: TIdContext; ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo);
begin
MyLog.ResquetInfo := ARequestInfo.PostStream;
//When I try this I get an access violation
MyLog.ResponseInfo := AResponseInfo.ContentStream;
end;
是否存在可以捕获完整响应的任何其他事件?