Browse Source

* Convert to HTTP app

Michael Van Canneyt 2 năm trước cách đây
mục cha
commit
6708bdf621
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      packages/fcl-web/examples/jsonrpc/extdirect/extdemo.lpr

+ 2 - 1
packages/fcl-web/examples/jsonrpc/extdirect/extdemo.lpr

@@ -3,11 +3,12 @@ program extdemo;
 {$mode objfpc}{$H+}
 
 uses
-  fpCGI, wmext;
+  fphttpapp, wmext;
 
 {$R *.res}
 
 begin
+  Application.Port:=8080;
   Application.Title:='Ext.Direct demo application';
   Application.Initialize;
   Application.Run;