Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
macOS / Mac OS X
»
Download a file from internet ...
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
Lazarus interface to Rexx...
by
mdlueck
[
Today
at 09:52:18 pm]
Install new .deb over exi...
by
CM630
[
Today
at 08:44:36 pm]
LazSWatch - a serial port...
by
CM630
[
Today
at 08:17:10 pm]
WASM import error
by
lebao3105
[
Today
at 05:51:47 pm]
OpenDocument('Filename') ...
by
J-G
[
Today
at 05:23:26 pm]
Lazarus Bugfix Release 4....
by
n7800
[
Today
at 04:56:57 pm]
Discipline your AI coding...
by
Weiss
[
Today
at 04:37:42 pm]
Lazarus Main not building...
by
dsiders
[
Today
at 03:01:07 pm]
Hello. I'm new to this co...
by
zeljko
[
Today
at 02:17:38 pm]
TCollection wiki entry
by
Thaddy
[
Today
at 01:24:21 pm]
weird error message
by
cdbc
[
Today
at 12:23:13 pm]
Freepascal
by
LeP
[
Today
at 09:40:33 am]
TTL Record Count, i.e. a ...
by
Zvoni
[
Today
at 09:10:08 am]
Printing on HP Smart Tank
by
Thaddy
[
Today
at 07:10:37 am]
P.I.S.S. a PlugIn-framewo...
by
cdbc
[
Today
at 06:38:27 am]
MVP made easier.
by
cdbc
[
Today
at 06:18:24 am]
I have made some progress...
by
onionmixer
[
Today
at 02:57:55 am]
Lazarus 4.6 may erase you...
by
Martin_fr
[July 12, 2026, 06:35:29 pm]
Best name for procedure
by
LemonParty
[July 12, 2026, 05:23:02 pm]
Fixed an RV32ec compiler ...
by
MattBradford
[July 12, 2026, 05:11:16 pm]
Many recent books on Laza...
by
Tomu
[July 12, 2026, 05:02:44 pm]
International Pascal Cong...
by
zeljko
[July 12, 2026, 04:08:53 pm]
equivalent to C/C++ "offs...
by
jamie
[July 12, 2026, 02:43:16 pm]
val return code
by
ALLIGATOR
[July 12, 2026, 01:40:21 pm]
Help needed on how to do ...
by
cdbc
[July 12, 2026, 12:15:15 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Download a file from internet ... (Read 1712 times)
Espectr0
Full Member
Posts: 240
Download a file from internet ...
«
on:
April 23, 2023, 04:48:17 pm »
Hola,
If I try to download a file from the internet from my app,
I get the exception "connection failed:443" in macOS while on Windows it works without problem.
Is it something I can solve or are they Apple limits?
Thanks
Logged
TRon
Hero Member
Posts: 4377
Re: Download a file from internet ...
«
Reply #1 on:
April 23, 2023, 04:59:36 pm »
Hi Espectr0,
You really need to provide a little more information. There are many components/packages/solutions to download a file with Pascal. For all we know you are trying to execute wget and it fails returning that error for you (I do not use macos so have no idea but more information does help me in trying to search for a solution).
Even better would be if you would be able to share some code (but that's not always necessary to do so but would be preferred if you are able to). Other than that some information on what version of FPC/Lazarus and/or version of component/package that is used).
That way people are more inclined to provide a better answer (other hen pasting their own solution that works for them)
edit: Right now I can only answer with that your used solution seem unable to connect in secure way probably/perhaps missing (correct/supported version of) ssl libraries ?
«
Last Edit: April 23, 2023, 05:09:18 pm by TRon
»
Logged
Today is tomorrow's yesterday.
Espectr0
Full Member
Posts: 240
Re: Download a file from internet ...
«
Reply #2 on:
April 23, 2023, 06:14:53 pm »
Hola TRon,
used the following code:
Code: Pascal
[Select]
[+]
[-]
fphttpclient
,
opensslsockets
...
FDS
:
=
TFileStream
.
Create
(
AFileName
,
fmCreate
)
;
try
try
FHTTPClient
.
HTTPMethod
(
'GET'
,
AURL
,
FDS
,
[
200
]
)
;
except
on E
:
Exception
do
begin
end
;
end
;
finally
FDS
.
Free
;
end
;
to connect via https and download a file, as I always say, in Windows it works correctly but in macOS I get that expexion.
Logged
TRon
Hero Member
Posts: 4377
Re: Download a file from internet ...
«
Reply #3 on:
April 23, 2023, 07:38:04 pm »
I have no idea how to check what could be the culprit (assuming that your used URL is valid and you are allowed to connect. Make sure to check firewall and file/application permissions perhaps even virus checker.).
Did you read
https://wiki.freepascal.org/macOS_Programming_Tips#OpenSSL.2C_LibreSSL.2C_Secure_Transport.2C_Network_Framework
?
Logged
Today is tomorrow's yesterday.
Espectr0
Full Member
Posts: 240
Re: Download a file from internet ...
«
Reply #4 on:
April 23, 2023, 09:28:56 pm »
Thanks, I'll investigate how to use Apple's standard framework
Logged
Ozz_Nixon
Full Member
Posts: 131
~ email: nixon.ozz@aol.com or ozznixon@gmail.com
Re: Download a file from internet ...
«
Reply #5 on:
May 21, 2023, 08:31:29 pm »
You could share the URL.
It could be simple things like - Datetime is invalid, Self Signed Certificate and OS is not set to allow, etc.
Posting the URL will allow us to help you.
Best Regards,
Ozz
Logged
---
Want to kick the tires to a Free Pascal like script engine?
http://www.ModernPascal.com/
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
macOS / Mac OS X
»
Download a file from internet ...
TinyPortal
© 2005-2018