2014-03-03 14:45:55 +01:00
|
|
|
unit WebModuleUnit1;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses System.SysUtils, System.Classes, Web.HTTPApp, MVCFramework;
|
|
|
|
|
|
|
|
type
|
|
|
|
TWebModule1 = class(TWebModule)
|
|
|
|
procedure WebModule1DefaultHandlerAction(Sender: TObject;
|
|
|
|
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
|
|
|
|
procedure WebModuleCreate(Sender: TObject);
|
|
|
|
procedure WebModuleDestroy(Sender: TObject);
|
|
|
|
private
|
|
|
|
MVC: TMVCEngine;
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
WebModuleClass: TComponentClass = TWebModule1;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
2020-05-11 23:39:43 +02:00
|
|
|
uses MyControllerU, MVCFramework.Commons;
|
2014-03-03 14:45:55 +01:00
|
|
|
|
|
|
|
procedure TWebModule1.WebModule1DefaultHandlerAction(Sender: TObject;
|
|
|
|
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
|
|
|
|
begin
|
2020-05-11 23:39:43 +02:00
|
|
|
Response.Content := '<html><heading/><body>DMVCFramework Server Application</body></html>';
|
2014-03-03 14:45:55 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleCreate(Sender: TObject);
|
|
|
|
begin
|
2020-05-11 23:39:43 +02:00
|
|
|
MVC := TMVCEngine.Create(Self,
|
|
|
|
procedure(Config: TMVCConfig)
|
|
|
|
begin
|
|
|
|
Config['ISAPI_PATH'] := '/isapi32/myisapi.dll';
|
|
|
|
end);
|
2014-03-03 14:45:55 +01:00
|
|
|
MVC.AddController(TMyController);
|
2020-05-11 23:39:43 +02:00
|
|
|
|
2014-03-03 14:45:55 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleDestroy(Sender: TObject);
|
|
|
|
begin
|
|
|
|
MVC.Free;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|