Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Networking and Web Programming
»
How to terminate a THttpAplication?
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
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Broken Icon Display on ma...
by
circular
[
Today
at 08:40:02 am]
Class designer/editor
by
eedeeota
[
Today
at 08:23:41 am]
Font draw in customdraw i...
by
mikutu
[
Today
at 08:02:02 am]
Problems with Gitlab
by
Joanna
[
Today
at 07:35:08 am]
Cannot open Access databa...
by
Khrys
[
Today
at 06:59:12 am]
programming with Lazarus
by
iLya2IK
[
Today
at 06:51:13 am]
TMemo and paste from clip...
by
Aruna
[
Today
at 05:58:24 am]
Extended Module Player
by
Gigatron
[
Today
at 03:04:39 am]
TListView.OnChange Event ...
by
msintle
[
Today
at 02:12:18 am]
environment variables
by
dbannon
[
Today
at 01:59:07 am]
CLI | Wildcard parameters...
by
Remy Lebeau
[
Today
at 01:56:58 am]
Error code 5
by
Remy Lebeau
[
Today
at 01:28:06 am]
TDBDateEdit component def...
by
wp
[September 11, 2024, 11:56:30 pm]
TStateMachine
by
matthius
[September 11, 2024, 11:40:00 pm]
7zip DLL is super broken
by
rvk
[September 11, 2024, 10:00:18 pm]
Any support for Perpendic...
by
circular
[September 11, 2024, 09:05:59 pm]
Local Vars often inspect ...
by
Martin_fr
[September 11, 2024, 08:58:22 pm]
Problem with pasting text...
by
artist
[September 11, 2024, 08:55:36 pm]
Identifier capitalization...
by
DomingoGP
[September 11, 2024, 08:33:22 pm]
Searching for a safe alte...
by
bytebites
[September 11, 2024, 08:00:55 pm]
Listview how to custom or...
by
jenson
[September 11, 2024, 06:10:31 pm]
Hints.
by
wp
[September 11, 2024, 06:03:36 pm]
Browser User Agent & Frie...
by
MarkMLl
[September 11, 2024, 05:49:58 pm]
How to use newer macOS SD...
by
Hansaplast
[September 11, 2024, 05:42:07 pm]
Disable localisation for ...
by
Nitorami
[September 11, 2024, 05:09:21 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to terminate a THttpAplication? (Read 773 times)
zen010101
Newbie
Posts: 4
How to terminate a THttpAplication?
«
on:
July 17, 2024, 07:54:44 pm »
My program wants to exit normally after Ctrl-C is pressed, but I haven't been able to accomplish this under FPC 3.22/3.3.1. The following is a sample program fragment from the official (...\fpcsrc\packages\fcl-web\examples\httpapp, I only added the code to respond to Ctrl-C)
Code: Pascal
[Select]
[+]
[-]
procedure
signalHandler
(
signum
:
cint
)
;
cdecl
;
begin
if
(
signum
=
SIGTERM
)
or
(
signum
=
SIGINT
)
then
begin
Writeln
(
'Exiting'
)
;
Application
.
Terminate
;
// can not quit the application
//Raise Exception.Create('EXIT THE APPLICATION'); // this can exit the THttpApplication normally, you will see 'Done' output to the console.
end
;
end
;
begin
// Register SignalHandler
fpSignal
(
SIGINT
,
@
signalHandler
)
;
.
.
.
Application
.
Initialize
;
Application
.
Port
:
=
StrTointDef
(
ParamStr
(
2
)
,
8384
)
;
Application
.
Title
:
=
'HTTP Demo application'
;
Application
.
Run
;
Writeln
(
'Done'
)
;
end
.
I noticed a bug report which was committed 4 years ago (
https://gitlab.com/freepascal.org/fpc/source/-/issues/36741#original-reporter-info-from-mantis-luca-olivlucareporter-name-luca-olivetti
), but until now it is still there too.
«
Last Edit: July 20, 2024, 07:59:52 pm by zen010101
»
Logged
PascalDragon
Hero Member
Posts: 5644
Compiler Developer
Re: How to terminate a THttpAplication?
«
Reply #1 on:
July 18, 2024, 09:31:03 pm »
Quote from: zen010101 on July 17, 2024, 07:54:44 pm
```pascal
[...]
```
The forum does not use Markdown, but BBCodes, in this case [code=pascal][/code].
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Networking and Web Programming
»
How to terminate a THttpAplication?
TinyPortal
© 2005-2018