2014-06-27 15:30:39 +02:00
|
|
|
program articles_crud;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
System.SysUtils,
|
|
|
|
Winapi.Windows,
|
|
|
|
IdHTTPWebBrokerBridge,
|
|
|
|
Web.WebReq,
|
|
|
|
Web.WebBroker,
|
2016-06-22 17:49:16 +02:00
|
|
|
WebModuleUnit1 in 'WebModuleUnit1.pas' {WebModule1: TWebModule} ,
|
2014-06-27 15:30:39 +02:00
|
|
|
Controllers.Base in 'Controllers.Base.pas',
|
|
|
|
Controllers.Articles in 'Controllers.Articles.pas',
|
|
|
|
Services in 'Services.pas',
|
|
|
|
BusinessObjects in 'BusinessObjects.pas',
|
2016-06-22 17:49:16 +02:00
|
|
|
MainDM in 'MainDM.pas' {dmMain: TDataModule} ,
|
2014-06-27 15:30:39 +02:00
|
|
|
Commons in 'Commons.pas';
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
|
|
|
|
procedure RunServer(APort: Integer);
|
|
|
|
var
|
|
|
|
LInputRecord: TInputRecord;
|
|
|
|
LEvent: DWord;
|
|
|
|
LHandle: THandle;
|
|
|
|
LServer: TIdHTTPWebBrokerBridge;
|
|
|
|
begin
|
2016-06-22 17:49:16 +02:00
|
|
|
WriteLn('ARTICLES CRUD Sample. Use articles_crud_vcl_client.dproj to manage data');
|
|
|
|
WriteLn(Format('Starting HTTP Server on port %d', [APort]));
|
2014-06-27 15:30:39 +02:00
|
|
|
LServer := TIdHTTPWebBrokerBridge.Create(nil);
|
|
|
|
try
|
|
|
|
LServer.DefaultPort := APort;
|
|
|
|
LServer.Active := True;
|
2016-06-22 17:49:16 +02:00
|
|
|
WriteLn('Press ESC to stop the server');
|
2014-06-27 15:30:39 +02:00
|
|
|
LHandle := GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
while True do
|
|
|
|
begin
|
|
|
|
ReadConsoleInput(LHandle, LInputRecord, 1, LEvent);
|
|
|
|
if (LInputRecord.EventType = KEY_EVENT) and
|
|
|
|
LInputRecord.Event.KeyEvent.bKeyDown and
|
|
|
|
(LInputRecord.Event.KeyEvent.wVirtualKeyCode = VK_ESCAPE) then
|
|
|
|
break;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
LServer.Free;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
begin
|
|
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
|
|
try
|
|
|
|
if WebRequestHandler <> nil then
|
|
|
|
WebRequestHandler.WebModuleClass := WebModuleClass;
|
|
|
|
RunServer(8080);
|
|
|
|
except
|
|
|
|
on E: Exception do
|
2016-06-22 17:49:16 +02:00
|
|
|
WriteLn(E.ClassName, ': ', E.Message);
|
2014-06-27 15:30:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end.
|