Synapse timeout (Thanks MVC).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4631 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa 2016-04-26 08:59:45 +00:00
parent 327dd4aab6
commit 357860b2cf

View File

@ -54,6 +54,8 @@ Type
FFormat : string;
FCookieManager : ICookieManager;
private
function GetConnectTimeout : Integer;
function GetReadTimeout : Integer;
function IndexOfHeader(const AHeader : string) :Integer;
function GetAddress: string;
function GetContentType: string;
@ -63,11 +65,13 @@ Type
function GetProxyUsername: string;
function GetSoapAction : string;
procedure SetAddress(const AValue: string);
procedure SetConnectTimeout(AValue : Integer);
procedure SetContentType(const AValue: string);
procedure SetProxyPassword(const AValue: string);
procedure SetProxyPort(const AValue: Integer);
procedure SetProxyServer(const AValue: string);
procedure SetProxyUsername(const AValue: string);
procedure SetReadTimeout(AValue : Integer);
procedure SetSoapAction(const AValue : string);
protected
procedure DoSendAndReceive(ARequest,AResponse:TStream); override;
@ -85,6 +89,8 @@ Type
property ProxyPassword : string read GetProxyPassword write SetProxyPassword;
property SoapAction : string read GetSoapAction write SetSoapAction;
property Format : string read FFormat write FFormat;
property ConnectTimeout: Integer read GetConnectTimeout write SetConnectTimeout;
property ReadTimeout: Integer read GetReadTimeout write SetReadTimeout;
End;
{$M+}
@ -99,6 +105,16 @@ const
{ THTTPTransport }
function THTTPTransport.GetConnectTimeout : Integer;
begin
Result := FConnection.Sock.ConnectionTimeout;
end;
function THTTPTransport.GetReadTimeout : Integer;
begin
Result := FConnection.Timeout;
end;
function THTTPTransport.IndexOfHeader(const AHeader : string) : Integer;
var
i : Integer;
@ -165,6 +181,11 @@ begin
FAddress := AValue;
end;
procedure THTTPTransport.SetConnectTimeout(AValue : Integer);
begin
FConnection.Sock.ConnectionTimeout := AValue;
end;
procedure THTTPTransport.SetContentType(const AValue: string);
begin
FConnection.MimeType := AValue;
@ -190,6 +211,11 @@ begin
FConnection.ProxyUser := AValue;
end;
procedure THTTPTransport.SetReadTimeout(AValue : Integer);
begin
FConnection.Timeout := AValue;
end;
procedure THTTPTransport.SetSoapAction(const AValue : string);
var
i : Integer;