2
0

hellohttpsrv.lpr 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. (* _ _
  2. * | |__ _ __ ___ ___ | | __
  3. * | '_ \| '__/ _ \ / _ \| |/ /
  4. * | |_) | | | (_) | (_) | <
  5. * |_.__/|_| \___/ \___/|_|\_\
  6. *
  7. * Microframework which helps to develop web Pascal applications.
  8. *
  9. * Copyright (c) 2012-2021 Silvio Clecio <[email protected]>
  10. *
  11. * Brook framework is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation; either
  14. * version 2.1 of the License, or (at your option) any later version.
  15. *
  16. * Brook framework is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with Brook framework; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. *)
  25. program hellohttpsrv;
  26. {$MODE DELPHI}
  27. uses
  28. BrookHTTPRequest,
  29. BrookHTTPResponse,
  30. BrookHTTPServer;
  31. type
  32. THTTPServer = class(TBrookHTTPServer)
  33. protected
  34. procedure DoRequest(ASender: TObject; ARequest: TBrookHTTPRequest;
  35. AResponse: TBrookHTTPResponse); override;
  36. end;
  37. procedure THTTPServer.DoRequest(ASender: TObject; ARequest: TBrookHTTPRequest;
  38. AResponse: TBrookHTTPResponse);
  39. begin
  40. AResponse.Send(
  41. '<html><head><title>Hello world</title></head><body>Hello world</body></html>',
  42. 'text/html; charset=utf-8', 200);
  43. end;
  44. begin
  45. with THTTPServer.Create(nil) do
  46. try
  47. Open;
  48. if not Active then
  49. Exit;
  50. WriteLn('Server running at http://localhost:', Port);
  51. ReadLn;
  52. finally
  53. Free;
  54. end;
  55. end.