Go to file
André Mussche d205bbe0a7
Update README.md
2018-01-05 08:19:18 +01:00
DUnit * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
Demo simple demo 2015-10-01 08:33:16 +02:00
superobject superobject: get current value/object (so objects are not created every time and overwritten -> mem leak) 2014-02-14 15:48:26 +01:00
.gitattributes error handling and unit test 2013-11-18 14:27:13 +01:00
.gitignore error handling and unit test 2013-11-18 14:27:13 +01:00
IdHTTPWebsocketClient.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
IdIOHandlerWebsocket.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
IdServerBaseHandling.pas first checkin 2013-11-11 21:14:42 +01:00
IdServerIOHandlerWebsocket.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
IdServerSocketIOHandling.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
IdServerWebsocketContext.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
IdServerWebsocketHandling.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
IdSocketIOHandling.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
IdWebsocketServer.pas * Add defines for supporting SSL and HTTPBridge and removing SUPEROBJECT dependency 2016-10-28 09:20:11 +02:00
README.md Update README.md 2018-01-05 08:19:18 +01:00
ROdemoWS.zip Websocket support for RemObjectsSDK 2013-11-11 21:15:05 +01:00
RemObjectsSDK_WS.js Websocket support for RemObjectsSDK 2013-11-11 21:15:05 +01:00
uROHTTPWebsocketServer.pas local sync 2014-01-02 14:59:48 +01:00
uROIdServerWebsocketHandling.pas Websocket support for RemObjectsSDK 2013-11-11 21:15:05 +01:00
uROIndyHTTPWebsocketChannel.pas shutdown fixes, error event handling 2014-06-25 15:30:18 +02:00
uROSimpleEventRepository.pas Websocket support for RemObjectsSDK 2013-11-11 21:15:05 +01:00
wsdefines.pas Missing file 2016-11-11 08:32:22 +01:00

README.md

Not active anymore

Unfortunately I don't have time to support this project anymore. Also the websocket protocol has changed in the meantime, so it won't work with browser and other modern implementations.

Please take a look at the free (but closed) 3rd party component:

DelphiWebsockets

Websockets and Socket.io for Delphi

See below for an event driven async example of an socket.io server and client:

uses
  IdWebsocketServer, IdHTTPWebsocketClient, superobject, IdSocketIOHandling;

var
  server: TIdWebsocketServer;
  client: TIdHTTPWebsocketClient;

const
  C_CLIENT_EVENT = 'CLIENT_TO_SERVER_EVENT_TEST';
  C_SERVER_EVENT = 'SERVER_TO_CLIENT_EVENT_TEST';

procedure ShowMessageInMainthread(const aMsg: string) ;
begin
  TThread.Synchronize(nil,
    procedure
    begin
      ShowMessage(aMsg);
    end);
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  server := TIdWebsocketServer.Create(Self);
  server.DefaultPort := 12345;
  server.SocketIO.OnEvent(C_CLIENT_EVENT,
    procedure(const ASocket: ISocketIOContext; const aArgument: TSuperArray; const aCallback: ISocketIOCallback)
    begin
      //show request (threadsafe)
      ShowMessageInMainthread('REQUEST: ' + aArgument[0].AsJSon);
      //send callback (only if specified!)
      if aCallback <> nil then
        aCallback.SendResponse( SO(['succes', True]).AsJSon );
    end);
  server.Active      := True;

  client := TIdHTTPWebsocketClient.Create(Self);
  client.Port := 12345;
  client.Host := 'localhost';
  client.SocketIOCompatible := True;
  client.SocketIO.OnEvent(C_SERVER_EVENT,
    procedure(const ASocket: ISocketIOContext; const aArgument: TSuperArray; const aCallback: ISocketIOCallback)
    begin
      ShowMessageInMainthread('Data PUSHED from server: ' + aArgument[0].AsJSon);
      //server wants a response?
      if aCallback <> nil then
        aCallback.SendResponse('thank for the push!');
    end);
  client.Connect;
  client.SocketIO.Emit(C_CLIENT_EVENT, SO([ 'request', 'some data']),
    //provide callback
    procedure(const ASocket: ISocketIOContext; const aJSON: ISuperObject; const aCallback: ISocketIOCallback)
    begin
      //show response (threadsafe)
      ShowMessageInMainthread('RESPONSE: ' + aJSON.AsJSon);
    end);

  //start timer so server pushes (!) data to all clients
  Timer1.Interval := 5 * 1000; //5s
  Timer1.Enabled  := True;
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
  Timer1.Enabled := false;
  server.SocketIO.EmitEventToAll(C_SERVER_EVENT, SO(['data', 'pushed from server']),
    procedure(const ASocket: ISocketIOContext; const aJSON: ISuperObject; const aCallback: ISocketIOCallback)
    begin
        //show response (threadsafe)
        TThread.Synchronize(nil,
          procedure
          begin
            ShowMessage('RESPONSE from a client: ' + aJSON.AsJSon);
          end);
    end);
end;