Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Networking and Web Programming
»
timelimit for HTTPMethod
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Trndi 16 is released
by
slicke
[
Today
at 03:06:44 am]
Clean up and build
by
n7800
[August 14, 2026, 11:03:28 pm]
[Qt5/Qt6] JPSupport-Qt: J...
by
Martin_fr
[August 14, 2026, 09:30:43 pm]
var vs out (including "co...
by
440bx
[August 14, 2026, 09:25:21 pm]
FpDebug: Bugs and API gap...
by
Martin_fr
[August 14, 2026, 09:19:49 pm]
Which Linux version
by
cdbc
[August 14, 2026, 08:57:51 pm]
'ReadStr' ?
by
PascalDragon
[August 14, 2026, 08:33:34 pm]
Cross platform DirectoryW...
by
LemonParty
[August 14, 2026, 07:41:15 pm]
Lazarus Bugfix Release 4....
by
wp
[August 14, 2026, 04:47:58 pm]
LRS Explorer
by
wp
[August 14, 2026, 04:02:45 pm]
TDWEdit
by
docno
[August 14, 2026, 03:35:02 pm]
BS Controls – Silly Compo...
by
Xenno
[August 14, 2026, 02:30:43 pm]
Separators in the compone...
by
JuhaManninen
[August 14, 2026, 01:28:05 pm]
Lazarus, Ubuntu Pi 4 and ...
by
Thaddy
[August 14, 2026, 12:07:04 pm]
Unleashed Pascal (async/a...
by
creaothceann
[August 14, 2026, 11:11:47 am]
AsyncProcess not firing O...
by
Martin_fr
[August 14, 2026, 11:05:52 am]
Is it possible to communi...
by
Xor-el
[August 14, 2026, 10:28:59 am]
How to avoid duplicates i...
by
mig-31
[August 13, 2026, 05:35:46 pm]
QGradientTrackPanel: A Fu...
by
Ed78z
[August 13, 2026, 04:49:24 pm]
Memory location
by
Thaddy
[August 13, 2026, 04:01:56 pm]
TurboBird IBX
by
laguna
[August 13, 2026, 03:55:51 pm]
TlsLib4Pascal
by
Xor-el
[August 13, 2026, 03:06:13 pm]
MR - DebuggerIntf for ter...
by
Martin_fr
[August 13, 2026, 12:54:22 pm]
AArch64, load a constant ...
by
LemonParty
[August 13, 2026, 12:31:06 pm]
Lazarus undead repository...
by
Dankan1890
[August 13, 2026, 10:28:54 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: timelimit for HTTPMethod (Read 1662 times)
DeroB73
Newbie
Posts: 6
timelimit for HTTPMethod
«
on:
December 07, 2019, 09:15:21 pm »
Hello
is it possible to set a time limit for the Synapse HTTPMethod GET method ?
I am trying a huge list from URLs to see i they are still alive.
TTPMethod('GET','
http://123.123.123/index
.') works great as long status is 200 but for dead links 400 it takes 2 a 3 seconds that's to long.
Greets
Logged
fjabouley
Full Member
Posts: 129
Re: timelimit for HTTPMethod
«
Reply #1 on:
December 07, 2019, 09:33:18 pm »
Try to add HTTP.Sock.ConnectionTimeout
Code: Pascal
[Select]
[+]
[-]
Function
Getwithtimeout
(
URL
:
string
;
Default_timeout
:
integer
=
1000
)
:
string
;
var
response
:
Tstringlist
;
var
HTTP
:
THTTPSend
;
begin
Result
:
=
''
;
Response
:
=
TStringList
.
Create
;
HTTP
:
=
THTTPSend
.
Create
;
HTTP
.
Timeout
:
=
Default_timeout
;
HTTP
.
Sock
.
ConnectionTimeout
:
=
Default_timeout
;
if
HTTP
.
HTTPMethod
(
'GET'
,
URL
)
then
begin
if
HTTP
.
ResultCode
<>
200
then
begin
// Error : do some stuff
end
else
begin
Response
.
LoadFromStream
(
HTTP
.
Document
)
;
Result
:
=
response
.
Text
;
end
;
end
;
Response
.
Free
;
HTTP
.
Free
;
end
;
or
Code: Pascal
[Select]
[+]
[-]
Function
IsCorrectURL
(
URL
:
string
;
Default_timeout
:
integer
=
1000
)
:
boolean
;
var
response
:
Tstringlist
;
var
HTTP
:
THTTPSend
;
begin
Result
:
=
false
;
HTTP
:
=
THTTPSend
.
Create
;
HTTP
.
Timeout
:
=
Default_timeout
;
HTTP
.
Sock
.
ConnectionTimeout
:
=
Default_timeout
;
if
HTTP
.
HTTPMethod
(
'GET'
,
URL
)
then
if
HTTP
.
ResultCode
=
200
then
Result
:
=
true
;
HTTP
.
Free
;
end
;
«
Last Edit: December 07, 2019, 09:41:56 pm by fjabouley
»
Logged
DeroB73
Newbie
Posts: 6
Re: timelimit for HTTPMethod
«
Reply #2 on:
December 08, 2019, 12:47:52 pm »
thanks fjabouley
it seems i have learn Synapse more in dept.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Networking and Web Programming
»
timelimit for HTTPMethod
TinyPortal
© 2005-2018