- Recompilación en Delphi10 de todos los paquetes de RO para generar las DCU's en Lib\D10 - Recompilación en Delphi10 de todos los paquetes de DA para generar las DCU's en Lib\D10 git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@9 b6239004-a887-0f4b-9937-50029ccdca16
156 lines
3.5 KiB
Plaintext
156 lines
3.5 KiB
Plaintext
object HTTPChatServerMainForm: THTTPChatServerMainForm
|
|
Left = 294
|
|
Top = 19
|
|
BorderIcons = [biSystemMenu]
|
|
BorderStyle = bsSingle
|
|
Caption = 'HTTP Chat Server'
|
|
ClientHeight = 371
|
|
ClientWidth = 425
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = False
|
|
Position = poScreenCenter
|
|
OnCreate = FormCreate
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object RoPoweredByRemObjectsButton1: TROPoweredByRemObjectsButton
|
|
Left = 8
|
|
Top = 8
|
|
Width = 212
|
|
Height = 48
|
|
Cursor = crHandPoint
|
|
end
|
|
object Label1: TLabel
|
|
Left = 8
|
|
Top = 68
|
|
Width = 87
|
|
Height = 13
|
|
Caption = 'Event Repository:'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 8
|
|
Top = 96
|
|
Width = 80
|
|
Height = 13
|
|
Caption = 'Known Sessions:'
|
|
end
|
|
object Label3: TLabel
|
|
Left = 240
|
|
Top = 8
|
|
Width = 70
|
|
Height = 13
|
|
Caption = 'Listen on Port:'
|
|
end
|
|
object lbSessions: TListBox
|
|
Left = 8
|
|
Top = 112
|
|
Width = 409
|
|
Height = 225
|
|
Anchors = [akLeft, akTop, akRight, akBottom]
|
|
ItemHeight = 13
|
|
TabOrder = 3
|
|
end
|
|
object bbCloseClient: TBitBtn
|
|
Left = 25
|
|
Top = 343
|
|
Width = 169
|
|
Height = 25
|
|
Anchors = [akLeft, akBottom]
|
|
Caption = 'Close Client'
|
|
Enabled = False
|
|
TabOrder = 4
|
|
OnClick = bbCloseClientClick
|
|
end
|
|
object bbWarnShutdown: TBitBtn
|
|
Left = 230
|
|
Top = 343
|
|
Width = 169
|
|
Height = 25
|
|
Anchors = [akLeft, akBottom]
|
|
Caption = 'Warn 5 Minutes Shutdown'
|
|
Enabled = False
|
|
TabOrder = 5
|
|
OnClick = bbWarnShutdownClick
|
|
end
|
|
object cbRepositoryType: TComboBox
|
|
Left = 97
|
|
Top = 64
|
|
Width = 320
|
|
Height = 21
|
|
Style = csDropDownList
|
|
ItemHeight = 13
|
|
TabOrder = 2
|
|
end
|
|
object ActivateButton: TBitBtn
|
|
Left = 240
|
|
Top = 31
|
|
Width = 161
|
|
Height = 25
|
|
Caption = 'Activate/Deactivate Server'
|
|
TabOrder = 1
|
|
OnClick = ActivateButtonClick
|
|
end
|
|
object sePort: TSpinEdit
|
|
Left = 312
|
|
Top = 3
|
|
Width = 91
|
|
Height = 22
|
|
MaxValue = 0
|
|
MinValue = 0
|
|
TabOrder = 0
|
|
Value = 0
|
|
end
|
|
object BINMessage: TROBinMessage
|
|
UseCompression = False
|
|
Left = 84
|
|
Top = 248
|
|
end
|
|
object ROServer: TROIndyHTTPServer
|
|
Dispatchers = <
|
|
item
|
|
Name = 'BINMessage'
|
|
Message = BINMessage
|
|
Enabled = True
|
|
PathInfo = 'Bin'
|
|
end>
|
|
Port = 8099
|
|
Left = 56
|
|
Top = 248
|
|
end
|
|
object InMemorySessionManager: TROInMemorySessionManager
|
|
SessionDuration = 1
|
|
OnSessionDeleted = InMemorySessionManagerSessionDeleted
|
|
Left = 152
|
|
Top = 296
|
|
end
|
|
object ROIndyTCPChannel1: TROIndyTCPChannel
|
|
ServerLocators = <>
|
|
DispatchOptions = []
|
|
Port = 8090
|
|
Host = '127.0.0.1'
|
|
Left = 232
|
|
Top = 256
|
|
end
|
|
object InMemoryEventRepository: TROInMemoryEventRepository
|
|
Message = BINMessage
|
|
SessionManager = InMemorySessionManager
|
|
OnAfterAddSession = InMemoryEventRepositoryAfterAddSession
|
|
OnAfterRemoveSession = InMemoryEventRepositoryAfterRemoveSession
|
|
Left = 192
|
|
Top = 296
|
|
end
|
|
object MasterServerEventRepository: TROMasterServerEventRepository
|
|
Message = BINMessage
|
|
SessionManager = InMemorySessionManager
|
|
OnAfterAddSession = InMemoryEventRepositoryAfterAddSession
|
|
OnAfterRemoveSession = InMemoryEventRepositoryAfterRemoveSession
|
|
Channel = ROIndyTCPChannel1
|
|
Left = 192
|
|
Top = 256
|
|
end
|
|
end
|