2015-06-15 18:57:46 +02:00
|
|
|
program BasicDemo;
|
|
|
|
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
|
|
|
|
uses
|
|
|
|
System.SysUtils,
|
|
|
|
Winapi.Windows,
|
|
|
|
Winapi.ShellAPI,
|
|
|
|
Web.WebReq,
|
|
|
|
Web.WebBroker,
|
|
|
|
MVCFramework.Server,
|
2016-06-16 22:13:35 +02:00
|
|
|
MVCFramework.Server.Impl,
|
2015-06-15 18:57:46 +02:00
|
|
|
WebModuleUnit1 in 'WebModuleUnit1.pas' {WebModule1: TWebModule} ,
|
|
|
|
App1MainControllerU in 'App1MainControllerU.pas';
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
procedure RunServer(APort: Integer);
|
|
|
|
var
|
2016-06-16 22:13:35 +02:00
|
|
|
LServerListenerCtx: IMVCListenersContext;
|
2015-06-15 18:57:46 +02:00
|
|
|
begin
|
|
|
|
Writeln(Format('Starting HTTP Server or port %d', [APort]));
|
|
|
|
|
2016-06-16 22:13:35 +02:00
|
|
|
LServerListenerCtx := TMVCListenersContext.Create;
|
2015-06-15 18:57:46 +02:00
|
|
|
|
2016-06-16 22:13:35 +02:00
|
|
|
LServerListenerCtx.Add(TMVCListenerProperties.New
|
|
|
|
.SetName('BasicDemo')
|
|
|
|
.SetPort(APort)
|
|
|
|
.SetMaxConnections(1024)
|
|
|
|
.SetWebModuleClass(WebModuleClass)
|
|
|
|
);
|
|
|
|
|
|
|
|
LServerListenerCtx.StartAll;
|
2015-06-15 18:57:46 +02:00
|
|
|
|
2017-04-29 23:56:56 +02:00
|
|
|
{$IFNDEF LINUX}
|
|
|
|
|
2015-06-15 18:57:46 +02:00
|
|
|
ShellExecute(0, 'open', pChar('http://localhost:' + inttostr(APort) +
|
|
|
|
'/div/10/20'), nil, nil, SW_SHOWMAXIMIZED);
|
2017-04-29 23:56:56 +02:00
|
|
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
Writeln('Press RETURN to stop the server');
|
|
|
|
ReadLn;
|
2015-06-15 18:57:46 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
begin
|
|
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
|
|
try
|
|
|
|
RunServer(3000);
|
|
|
|
except
|
|
|
|
on E: Exception do
|
|
|
|
Writeln(E.ClassName, ': ', E.Message);
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|