delphimvcframework/samples/apachemodule/MainWebModuleUnit.pas

58 lines
1.2 KiB
ObjectPascal
Raw Normal View History

2014-05-22 12:48:17 +02:00
unit MainWebModuleUnit;
interface
uses
System.SysUtils,
System.Classes,
Web.HTTPApp,
MVCFramework,
MVCFramework.Commons;
2014-05-22 12:48:17 +02:00
type
2014-05-22 12:48:17 +02:00
Twm = class(TWebModule)
procedure WebModule1DefaultHandlerAction(Sender: TObject;
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
procedure WebModuleCreate(Sender: TObject);
procedure WebModuleDestroy(Sender: TObject);
private
MVCEngine: TMVCEngine;
public
{ Public declarations }
end;
var
WebModuleClass: TComponentClass = Twm;
implementation
uses
WineCellarAppControllerU;
{$R *.dfm}
procedure Twm.WebModule1DefaultHandlerAction(Sender: TObject;
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
begin
Response.Content :=
'<html><heading/><body>Web Server Application</body></html>';
end;
procedure Twm.WebModuleCreate(Sender: TObject);
begin
MVCEngine := TMVCEngine.Create(self);
MVCEngine.AddController(TWineCellarApp);
MVCEngine.Config[TMVCConfigKey.DocumentRoot] := ''; // static files are not served by dmvc
2014-05-22 12:48:17 +02:00
end;
procedure Twm.WebModuleDestroy(Sender: TObject);
begin
MVCEngine.Free;
end;
end.