Componentes.Terceros.RemObj.../internal/5.0.24.615/1/RemObjects SDK for Delphi/Samples/Variants/VariantsServerMain.pas

37 lines
832 B
ObjectPascal

unit VariantsServerMain;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,
uROClient, uROPoweredByRemObjectsButton, uROClientIntf, uROServer,
uROBinMessage, uROIndyHTTPServer, uROIndyTCPServer, uROSOAPMessage;
type
TVariantsServerMainForm = class(TForm)
RoPoweredByRemObjectsButton1: TRoPoweredByRemObjectsButton;
BINMessage: TROBinMessage;
ROServer: TROIndyHTTPServer;
ROSOAPMessage: TROSOAPMessage;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
VariantsServerMainForm: TVariantsServerMainForm;
implementation
{$R *.dfm}
procedure TVariantsServerMainForm.FormCreate(Sender: TObject);
begin
ROServer.Active := true;
end;
end.