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
How do you move a Procedu...
by
440bx
[
Today
at 05:22:09 am]
Bitmap 16bit R5G6B5
by
domasz
[September 15, 2024, 11:49:05 pm]
FPReport QRCode
by
dseligo
[September 15, 2024, 11:33:44 pm]
Fractal using Primes (and...
by
VisualLab
[September 15, 2024, 09:54:33 pm]
Integer maths > 16 bits
by
MarkMLl
[September 15, 2024, 09:47:37 pm]
TTimer in class does not ...
by
PascalDragon
[September 15, 2024, 09:33:05 pm]
[SOLVED] Getting started ...
by
PascalDragon
[September 15, 2024, 09:18:33 pm]
Assigning result of a fun...
by
PascalDragon
[September 15, 2024, 09:14:41 pm]
Order of dialog buttons?
by
dsiders
[September 15, 2024, 09:12:29 pm]
LazSerial how validate ch...
by
PascalDragon
[September 15, 2024, 08:56:13 pm]
Regular expressions in In...
by
carl_caulkett
[September 15, 2024, 08:52:57 pm]
Reading tBitmap data is e...
by
wp
[September 15, 2024, 08:23:58 pm]
Is it practical or even p...
by
Thaddy
[September 15, 2024, 07:13:02 pm]
TUI design (and ham radio...
by
MarkMLl
[September 15, 2024, 07:05:49 pm]
Who uses embedded languag...
by
gidesa
[September 15, 2024, 06:03:39 pm]
C++ conversion : what is ...
by
jamie
[September 15, 2024, 04:24:47 pm]
Golang vs free pascal
by
Warfley
[September 15, 2024, 03:11:11 pm]
FPReport and scripting
by
dseligo
[September 15, 2024, 02:51:04 pm]
Class designer/editor
by
VisualLab
[September 15, 2024, 02:00:07 pm]
TSynEdit: linefeeds and L...
by
Aruna
[September 15, 2024, 01:55:30 pm]
How many levels of proced...
by
Thaddy
[September 15, 2024, 01:32:16 pm]
Prevent collapsing item l...
by
Hansvb
[September 15, 2024, 12:03:56 pm]
Browser User Agent & Frie...
by
ASBzone
[September 15, 2024, 08:30:15 am]
libqt6pas and ChatGPT
by
Bogen85
[September 15, 2024, 02:21:26 am]
Broken Icon Display on ma...
by
lainz
[September 14, 2024, 10:54:02 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to terminate a THttpAplication? (Read 823 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: 5649
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