ISAPI Module Project

If you plan to start an ISAPI Module project and choose it as the default deployment method, you can select this type of project. The DPR file shows that this project will produce a DLL when it is compiled. For deployment options, please see the ISAPI Modulearrow-up-right section. ISAPI modules can be deployed to Microsoft® IIS server or Apache server for Windows. Also see Deployment Optionsarrow-up-right.

library Project1;

uses
  uniGUIISAPI,
  ServerModule in 'ServerModule.pas' {UniServerModule: TUniGUIServerModule};

{$R *.res}

exports
  GetExtensionVersion,
  HttpExtensionProc,
  TerminateExtension;

end.